Unanswered questions in Machine Learning

0 votes
0 answers

Could you answer this question

Objective: The objective of this assignment is to ...READ MORE

Apr 29, 2023 in Machine Learning by anonymous

edited Mar 5 136 views
0 votes
0 answers

auto generating tags recommending system in python

want to build a python based auto ...READ MORE

Apr 26, 2023 in Machine Learning by anonymous

edited Mar 5 137 views
0 votes
0 answers

Get fitted coefficient of linear regression equation

I have a dataset with predicted and ...READ MORE

Apr 11, 2022 in Machine Learning by Dev
• 6,000 points
858 views
0 votes
0 answers

100 samples of 20 from the dataset and drawing regression lines along with population regression line

I have a datasetwith two variables hours ...READ MORE

Apr 11, 2022 in Machine Learning by Dev
• 6,000 points
1,071 views
0 votes
0 answers

Simple algorithm for generating random numbers with bigger/smaller probability

I'm currently working on a game, with ...READ MORE

Mar 26, 2022 in Machine Learning by Dev
• 6,000 points

edited Mar 4 33 views
0 votes
0 answers

Create random numbers with left skewed probability distribution

I would like to pick a number ...READ MORE

Mar 25, 2022 in Machine Learning by Dev
• 6,000 points
1,486 views
0 votes
0 answers

Expected 2D array, got 1D array instead: array=[].

from sklearn.linear_model import LinearRegression lin_reg = LinearRegression(normalize = ...READ MORE

Mar 5, 2022 in Machine Learning by Robel

edited Mar 4 81 views
0 votes
0 answers

Is k-Nearest Neighbors algorithm used a lot in real life?

the k-Nearest Neighbors is mentioned as one ...READ MORE

Feb 28, 2022 in Machine Learning by Dev
• 6,000 points
487 views
0 votes
0 answers

Decision tree vs. Naive Bayes classifier

In which cases is it better to ...READ MORE

Feb 28, 2022 in Machine Learning by Dev
• 6,000 points
740 views
0 votes
0 answers

Limitations of Regression in Machine Learning?

what happens when you want to do ...READ MORE

Feb 28, 2022 in Machine Learning by Dev
• 6,000 points
453 views
0 votes
0 answers

Difference between classification and regression, with SVMs

What is the exact difference between a ...READ MORE

Feb 28, 2022 in Machine Learning by Dev
• 6,000 points
912 views
0 votes
0 answers

How to find all latest java files.

I need all the latest java packages ...READ MORE

Dec 1, 2021 in Machine Learning by anonymous
• 120 points
456 views
0 votes
0 answers

Error while using Random Forest.

I am using this script rf.partial.prob(x=rf.mod,pred.data=FOR, xname="Qmax",which.class ...READ MORE

Dec 1, 2021 in Machine Learning by Khan
• 120 points
634 views
0 votes
0 answers

Unable to import tensorflow , getting the error mentioned in the image

I'm trying to import the below packages ...READ MORE

Sep 15, 2021 in Machine Learning by Dhanush

edited Mar 4 53 views
0 votes
0 answers

I am trying to create one Machine Learning model using LinearRegression model, but I am getting the below error.

 training data (input and output) for Measuring temperature using crickets x_train =[44.000,46.400,43.600,35.000,35.000,32.600,28.900,27.700,25.500,20.375,12.500,37.000,37.500,36.500,36.200] #Cricket Chirp per 1 y_train =[80.500,78.500,78.000,73.500,70.500,68.000,66.000,65.000,61.500,57.000,55.000,76.250,74.000,74.000,72.500]  # Temp in F  Training based on training data (input and output) for Measuring temperature using crickets x=x_train y=y_train opt = np.polyfit(x, y, 1) y_pred = int(opt[0]) * x + opt[1] opt_rmse = math.sqrt(metrics.mean_squared_error(y_pred, y)) slope = opt[0] bias = opt[1] #print("y_pred", y_pred, "y ", y) print("Optimal Training RMSE =", opt_rmse, "for solution", opt) the error is ValueError: Found input variables with ...READ MORE

Sep 2, 2021 in Machine Learning by anonymous

edited Mar 4 62 views
0 votes
0 answers

How do I solve this error from my code? KeyError: "['Date' 'Adj Close'] not found in axis"

#import libraries: import numpy as np import streamlit as ...READ MORE

Aug 26, 2021 in Machine Learning by anonymous

edited Mar 4 101 views
0 votes
0 answers

classification report

Hi, I execute the decision tree algorithm ...READ MORE

Jun 16, 2021 in Machine Learning by anonymous

edited Mar 4 29 views
0 votes
0 answers

KNN on breast cancer

Hi, I am performing a KNN classifier ...READ MORE

Jun 16, 2021 in Machine Learning by anonymous

edited Mar 4 42 views
0 votes
0 answers

Even though I have installed tensorflow, the error is showing to install it

This is the pip list. I have ...READ MORE

Apr 12, 2021 in Machine Learning by Jeevan

edited Mar 4 43 views
0 votes
0 answers

I can not install Tensor Flow. DLL Error 3221225501 tensorflow internal

I have a Windows 7 i5 core ...READ MORE

Apr 3, 2021 in Machine Learning by Shilpa

edited Mar 4 70 views
0 votes
0 answers
0 votes
0 answers

Which Machine learning algorithm is best for the following scenario?

For a dating app, there are 4 ...READ MORE

Mar 1, 2021 in Machine Learning by anonymous

edited Mar 4 63 views
0 votes
0 answers

Error: No module named 'bayespy'

READ MORE

Jan 26, 2021 in Machine Learning by Jeevan

edited Mar 4 43 views
0 votes
0 answers
0 votes
0 answers

no module found error

READ MORE

Jan 13, 2021 in Machine Learning by anonymous

edited Mar 4 44 views
0 votes
0 answers

im getting this error no file found

READ MORE

Jan 13, 2021 in Machine Learning by rsandhya

edited Mar 4 51 views
+1 vote
0 answers

Stock Prediction using previous data

Hello, I had followed one of the ...READ MORE

Jan 2, 2021 in Machine Learning by liamliu
• 130 points
1,308 views
0 votes
0 answers

AttributeError: 'numpy.ndarray' object has no attribute 'values'

Training_Set = Training_Set.values sc = MinMaxScaler(feature_range=(0, 1)) Train = ...READ MORE

Oct 19, 2020 in Machine Learning by neha
• 140 points

recategorized Oct 19, 2020 by MD 4,142 views
0 votes
0 answers

ValueError: Found input variables with inconsistent numbers of samples: [11, 3988]

After reshaping also I am getting the ...READ MORE

Aug 27, 2020 in Machine Learning by sairam
• 160 points

edited Aug 27, 2020 by MD 5,458 views
0 votes
0 answers

Not able to import images.

It show my syntax is incorrect.Please help ...READ MORE

May 15, 2020 in Machine Learning by sangeethstanly
• 120 points
919 views
0 votes
0 answers

how can i make menus in google dialogflow chatbot??

I am working on a chatbot for ...READ MORE

Apr 29, 2020 in Machine Learning by Ankit
• 120 points
2,141 views
0 votes
0 answers

NameError: name '_train' is not defined

Mar 30, 2020 in Machine Learning by anonymous
• 120 points
3,218 views
0 votes
0 answers

How to improve deeplearning model performance?

Using early stopping my model stops training ...READ MORE

Mar 24, 2020 in Machine Learning by Anan
• 180 points

edited Mar 24, 2020 by Anan 908 views
0 votes
0 answers

machine learning engineer

Hello, I would like to know if ...READ MORE

Mar 3, 2020 in Machine Learning by Axel
• 120 points

edited Mar 4, 2020 by Gitika 639 views
0 votes
0 answers

derivion logistic regresion from odds function

Feb 7, 2020 in Machine Learning by GANJI
• 120 points
869 views
+1 vote
0 answers

text mining new set of data in production environment expect training feature

Hi, I have trained a model based on ...READ MORE

Nov 28, 2019 in Machine Learning by MANOJ
• 130 points
1,042 views
0 votes
0 answers

Transition matrix to have percentages instead of default probability - Markov chain

While using Markov chain, is it possible ...READ MORE

Aug 3, 2019 in Machine Learning by Laksha
1,033 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,492 views