Trending questions in Machine Learning

0 votes
1 answer

Attribute selection in Decision tree Algorithm

If you have a dataset that consists ...READ MORE

May 14, 2019 in Machine Learning by Raj
2,937 views
0 votes
1 answer

What is LassoLars? - Linear regression

LassoLars is a lasso model implemented using ...READ MORE

May 22, 2019 in Machine Learning by Basu
2,430 views
0 votes
1 answer

What is Isotonic regression?

Isotonic regression builds an increasing approximation of ...READ MORE

Jun 3, 2019 in Machine Learning by Mohit
1,724 views
0 votes
1 answer

What is decision tree algorithm?

A decision tree is a map of ...READ MORE

May 13, 2019 in Machine Learning by Upadhya
2,549 views
0 votes
1 answer

Create dataframe using Pandas - Linear Regression

You can read excel files df = pd.read_excel(...) You ...READ MORE

May 23, 2019 in Machine Learning by Neha
2,113 views
0 votes
1 answer

What is rolling linear regression?

Rolling regression is the analysis of changing ...READ MORE

May 23, 2019 in Machine Learning by Jinu
2,073 views
0 votes
1 answer

What is information gain? - Decision tree algo

You can use information gain to decide ...READ MORE

May 14, 2019 in Machine Learning by Raj
2,439 views
0 votes
1 answer

What is Gini Index in decision tree

Gini Index is a metric to measure ...READ MORE

May 14, 2019 in Machine Learning by Raj
2,399 views
0 votes
1 answer

How do I convert a pandas dataframe to a numpy array using python?

Try something like this: df.values array([[nan, 0.2, nan], ...READ MORE

May 23, 2019 in Machine Learning by Krishti
2,014 views
0 votes
1 answer

Python script for linear regression on panda dataframe

Use the following code: from scipy import stats slope, ...READ MORE

May 23, 2019 in Machine Learning by Imran
1,974 views
0 votes
1 answer

What is KNN algorithm?

KNN which stand for K Nearest Neighbor ...READ MORE

May 13, 2019 in Machine Learning by Jinu
2,306 views
0 votes
1 answer

What is correlation and its types?

Correlation is a statistical measure that shows ...READ MORE

May 10, 2019 in Machine Learning by Zulaikha
2,355 views
0 votes
1 answer

Example of Logistic regression with python code

Have a look at this: import csv import ...READ MORE

May 13, 2019 in Machine Learning by Jinu
2,201 views
0 votes
1 answer

What are the techniques used in supervised learning?

There are two main techniques used in ...READ MORE

May 10, 2019 in Machine Learning by Kiran
2,319 views
0 votes
1 answer

Python code for basic linear regression

Hi @Dipti, you could try something like ...READ MORE

May 10, 2019 in Machine Learning by Vinod
2,193 views
0 votes
1 answer

Checking spectral co-clustering also accuracy

Hi Vishal, you could try something like ...READ MORE

Jun 3, 2019 in Machine Learning by Yamini
1,020 views
0 votes
1 answer

Generate an array with constant block diagonal structure for biclustering.

Try this: import numpy as np from matplotlib import ...READ MORE

Jun 3, 2019 in Machine Learning by Vishal
676 views
0 votes
1 answer

Can you give LassoLars python example?

Hey @Vivek, Try something like this: >>> from ...READ MORE

May 22, 2019 in Machine Learning by Tanmay
1,185 views
0 votes
0 answers

Hello I have some errors while implementing variational autoencoder

def dense_layers(sizes): return tfk.Sequential([tfkl.Dense(size, ...READ MORE

May 19, 2019 in Machine Learning by anonymous

edited May 20, 2019 by Omkar 1,379 views
0 votes
1 answer

Show python implementation of Lasso class - regression

Hey @Tanmay, try something like this: >>> from ...READ MORE

May 22, 2019 in Machine Learning by Vedant
1,021 views
0 votes
1 answer

Example to run KNN algorithm using python

Have a look at this one: from sklearn.datasets ...READ MORE

May 9, 2019 in Machine Learning by Harvy
1,582 views
0 votes
1 answer

Ridge Regression Example

Hey @Nipun, you can try something like ...READ MORE

May 22, 2019 in Machine Learning by Umer
953 views
0 votes
1 answer

What is the process involved in machine Learning?

Discussing this on a high level, these ...READ MORE

May 10, 2019 in Machine Learning by Rhea
1,508 views
0 votes
1 answer

Are there any python libraries that do multiple regressions?

You can use sklearn.linear_model.LinearRegression. Something like this: from ...READ MORE

May 22, 2019 in Machine Learning by Vinay
896 views
0 votes
1 answer

Semi-supervised learrning assumptions

Obviously, semi-supervised learning makes use of some ...READ MORE

May 9, 2019 in Machine Learning by Charu
1,440 views
0 votes
1 answer

What is Unsupervised Learning?

Unsupervised Learning is the training of machine ...READ MORE

May 8, 2019 in Machine Learning by Alok
1,368 views
0 votes
1 answer

What is Reinforcement learning?

Alright, let me not get into the ...READ MORE

May 9, 2019 in Machine Learning by Alok
1,364 views
0 votes
1 answer

What are different clustering methods?

Different clustering methods include: 1. Density-Based Methods: These methods ...READ MORE

May 10, 2019 in Machine Learning by Vishal
1,292 views
0 votes
1 answer

What are the techniques used in unsupervised learning?

There are two main techniques used in ...READ MORE

May 10, 2019 in Machine Learning by Rhea
1,280 views
0 votes
1 answer

What is clustering in Machine Learning?

Clustering is a type of unsupervised learning ...READ MORE

May 10, 2019 in Machine Learning by Shridhar
1,153 views
0 votes
1 answer

Are there different types of reinforcements?

There are two types of reinforcements - ...READ MORE

May 9, 2019 in Machine Learning by Mishra
1,103 views
0 votes
1 answer

How do I create a decision tree?

Let us consider the following example. Suppose a ...READ MORE

May 13, 2019 in Machine Learning by Fatima
900 views
0 votes
1 answer

Clustering algorithms

These are the clustering algorithms that are ...READ MORE

May 10, 2019 in Machine Learning by Nisha
1,054 views
0 votes
1 answer

Why data set always divided in training data and test data in regressions?

Let me explain the process of prediction ...READ MORE

May 11, 2019 in Machine Learning by Mishra
836 views
0 votes
1 answer

Real world applications of Machine Learning

Few real-world applications of machine learning are  Have ...READ MORE

May 10, 2019 in Machine Learning by Jinu
834 views
0 votes
1 answer

Where is reinforcement learning applied?

Reinforcement learning is being used in various ...READ MORE

May 9, 2019 in Machine Learning by Manasa
804 views
0 votes
1 answer

Can an ML model be recreated or retrained?

Of course, your model is retrainable, in ...READ MORE

May 13, 2019 in Machine Learning by Hemant
513 views