questions/machine-learning
Hey @Ruth, you can use this model ...READ MORE
The predict() function returns a plain numpy ...READ MORE
Hi Vishal, you could try something like ...READ MORE
Try this: import numpy as np from matplotlib import ...READ MORE
Have a look at this one, It's ...READ MORE
Isotonic regression builds an increasing approximation of ...READ MORE
Hi@Kim, You can use the train_test_split function to ...READ MORE
Hey! Your array shapes seem inconsistent. Try ...READ MORE
Assuming X_test is a pandas dataframe, you ...READ MORE
Use the following code: from scipy import stats slope, ...READ MORE
Rolling regression is the analysis of changing ...READ MORE
Try something like this: df.values array([[nan, 0.2, nan], ...READ MORE
You can read excel files df = pd.read_excel(...) You ...READ MORE
Yes, you can do this using statsmodels: import ...READ MORE
Hey @Vivek, Try something like this: >>> from ...READ MORE
LassoLars is a lasso model implemented using ...READ MORE
Hey @Tanmay, try something like this: >>> from ...READ MORE
Hey @Nipun, you can try something like ...READ MORE
You can use sklearn.linear_model.LinearRegression. Something like this: from ...READ MORE
def dense_layers(sizes): return tfk.Sequential([tfkl.Dense(size, ...READ MORE
Gini Index is a metric to measure ...READ MORE
You can use information gain to decide ...READ MORE
If you have a dataset that consists ...READ MORE
The KNN algorithm has the following features: KNN ...READ MORE
KNN which stand for K Nearest Neighbor ...READ MORE
“Greedy Approach is based on the concept ...READ MORE
Let us consider the following example. Suppose a ...READ MORE
Even though the decision tree algorithm has ...READ MORE
These are the advantages of using a ...READ MORE
Hey! Try this: # Run this program on ...READ MORE
A decision tree is a map of ...READ MORE
Have a look at this: import csv import ...READ MORE
There are three main types of logistic ...READ MORE
Of course, your model is retrainable, in ...READ MORE
Let me explain the process of prediction ...READ MORE
Correlation is a statistical measure that shows ...READ MORE
There are three types of regressions: Linear regression: Linear ...READ MORE
These are the clustering algorithms that are ...READ MORE
Different clustering methods include: 1. Density-Based Methods: These methods ...READ MORE
Clustering is a type of unsupervised learning ...READ MORE
Hi @Dipti, you could try something like ...READ MORE
There are two main techniques used in ...READ MORE
Discussing this on a high level, these ...READ MORE
Few real-world applications of machine learning are Have ...READ MORE
Have a look at this one: from sklearn.datasets ...READ MORE
Obviously, semi-supervised learning makes use of some ...READ MORE
Reinforcement learning is being used in various ...READ MORE
There are two types of reinforcements - ...READ MORE
OR
At least 1 upper-case and 1 lower-case letter
Minimum 8 characters and Maximum 50 characters
Already have an account? Sign in.