University Admission Prediction using Keras in Python

By Om Tejaswini

This post aims to predict the likelihood of a student being admitted into a university based on some factors. A predictive model is developed using neural networks to do this task .... Read More

Text Clustering using K-Means with Sklearn

By Om Tejaswini

K-Means Clustering Algorithm: K-Means clustering is a machine learning method that helps to organize data into groups based on how similar or different they are. The goal is to div.... Read More

Pass argument to a Button command function in Tkinter

By Saruque Ahamed Mollick

In this Tkinter tutorial, we will learn how to pass an argument to a button command function. We can pass arguments in two different ways. Using lambda Using nested function Pass a.... Read More

Set default text in Tkinter Entry widget

By Saruque Ahamed Mollick

In this tutorial, I will show you how easily we can set any text as the default text in the Tkinter Entry widget. You can also say that I will set placeholder text for Tkinter Entr.... Read More

Principal components regression in ML – Python

By Saumya

Learn how to perform principal components regression in Machine learning using Python. PCR is used to reduce dimensions in a dataset by projecting them in lower dimension space and.... Read More

k Medoids Clustering in Python

By Saumya

In this tutorial, we will learn how to perform K medoids clustering in Python. First, let’s import the required libraries. import numpy as np from scipy.spatial.distance impo.... Read More

Color Matching Game with Tkinter in Python

By Om Tejaswini

This article is about color matching game built using the Tkinter library in Python. Overview of the game: In this game, players have to enter the color of the text displayed not t.... Read More

Upload or update App from Xcode beta to App Store

By Saruque Ahamed Mollick

Here, I will share a trick to remove the restriction of Apple that prevents you from uploading or updating apps to App store from Xcode beta versions. One of my reddit mates just s.... Read More

Related Posts