Most viewed questions in Machine Learning

0 votes
1 answer

How to determine the correct kernel function?

Hi@Ogun, It depends on your dataset. First thing ...READ MORE

Oct 12, 2020 in Machine Learning by MD
• 95,440 points
418 views
0 votes
1 answer

Competitive Programming Algorithm Sock Drawing Probability Question

Another way to look at the problem ...READ MORE

Mar 25, 2022 in Machine Learning by Dev
• 6,000 points
411 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
407 views
0 votes
1 answer

When should Data Binning be used in data processing?

Mostly by trial and error. When a ...READ MORE

Apr 7, 2022 in Machine Learning by Nandini
• 5,480 points
403 views
0 votes
1 answer

R - plm regression with time in posix-format

To use in your model, I believe ...READ MORE

Apr 4, 2022 in Machine Learning by Nandini
• 5,480 points
402 views
0 votes
1 answer

Machine Learning: Unsupervised Backpropagation

Backpropagation in unsupervised learning; probably the models ...READ MORE

Feb 23, 2022 in Machine Learning by Dev
• 6,000 points
395 views
0 votes
1 answer

What is the actual meaning implied by information gain in data mining?

Information gain works on the concept of ...READ MORE

Mar 2, 2022 in Machine Learning by Dev
• 6,000 points
394 views
0 votes
1 answer

Training and testing data in machine learning

Unsupervised learning is used with the K-means ...READ MORE

Feb 23, 2022 in Machine Learning by Dev
• 6,000 points
394 views
0 votes
1 answer

Naive Bayes classifier bases decision only on a-priori probabilities

You seem to have trained the model ...READ MORE

Mar 25, 2022 in Machine Learning by Nandini
• 5,480 points
390 views
0 votes
1 answer

How to perform regression algorithm on a textual data(IMDB reviews)?

You can use either word2vec or tf-idf ...READ MORE

Mar 30, 2022 in Machine Learning by Dev
• 6,000 points
386 views
0 votes
1 answer

Calculating (experimental) probability of head toss

To answer your question.  Refer to the code ...READ MORE

Mar 23, 2022 in Machine Learning by Dev
• 6,000 points
373 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 373 views
0 votes
1 answer

Empirical probability in R with x1+x2>2*x3

It's easy to duplicate random draws with ...READ MORE

Mar 15, 2022 in Machine Learning by Dev
• 6,000 points
366 views
0 votes
1 answer

What is the difference between Deep Learning and traditional Artificial Neural Network machine learning?

A large number of layers causes serious ...READ MORE

Feb 25, 2022 in Machine Learning by Dev
• 6,000 points
357 views
0 votes
1 answer

Hierarchical clustering of 1 million objects

Consider switching the algorithm instead of using ...READ MORE

Feb 24, 2022 in Machine Learning by Nandini
• 5,480 points
355 views
0 votes
1 answer

Error message because of quotation mark

Hello, Try this: summary(data[["diff`GBP/EUR`"]]) Hope it works! ...READ MORE

Nov 30, 2020 in Machine Learning by Niroj
• 82,880 points
354 views
0 votes
1 answer

Which machine learning classifier to choose, in general?

Choice of Machine Learning Classifier depends upon ...READ MORE

Feb 21, 2022 in Machine Learning by Dev
• 6,000 points
350 views
0 votes
1 answer

Screening (multi)collinearity in a regression model

The kappa() function can be of assistance. ...READ MORE

Mar 30, 2022 in Machine Learning by Dev
• 6,000 points
348 views
0 votes
1 answer

Bayesian Probability

Conditional independence does not always imply independence: ...READ MORE

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

Probability: the one true fish

What you're looking for is P(A|B), which ...READ MORE

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

Choose specific number with probability

Examine the sample function. set.seed(1) sample(c(0,1), size=12, replace=TRUE, prob=c(0.2,0.8)) 1 ...READ MORE

Mar 14, 2022 in Machine Learning by Dev
• 6,000 points
328 views
0 votes
1 answer

How to export regression equations for grouped data?

First, you'll need a linear model with ...READ MORE

Mar 14, 2022 in Machine Learning by Dev
• 6,000 points
327 views
0 votes
1 answer

Leela Chess Zero: how large is the probability vector in the output layer?

The next move's probability vector (called the ...READ MORE

Mar 9, 2022 in Machine Learning by Nandini
• 5,480 points
327 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
322 views
0 votes
1 answer

Getting one word as caption with zero probability using pretrained checkpoints for image captioning-im2txt

Under caption_generator.py change the following line as follow ...READ MORE

Feb 27, 2022 in Machine Learning by CoolCoder
• 4,400 points
318 views
0 votes
1 answer

Which industries use AI and Machine Learning?

Industries such as healthcare, finance, retail, manufacturing, ...READ MORE

Jul 3, 2023 in Machine Learning by anonymous
• 1,380 points
306 views
0 votes
1 answer

Assumptions of Naïve Bayes and Logistic Regression

There are very few difference between Naive ...READ MORE

Feb 7, 2022 in Machine Learning by Nandini
• 5,480 points
304 views
0 votes
1 answer

How can QA team leverage BDD acceptance criteria for automation regression testing?

There is no correct response; in my ...READ MORE

Apr 5, 2022 in Machine Learning by Dev
• 6,000 points
303 views
0 votes
1 answer

Getting one word as caption with zero probability using pretrained checkpoints for image captioning-im2txt

captiongenerator.py is a Python script that generates ...READ MORE

Mar 17, 2022 in Machine Learning by Dev
• 6,000 points
303 views
0 votes
1 answer

What does regression test mean?

Regression testing is used to ensure that ...READ MORE

Mar 9, 2022 in Machine Learning by Nandini
• 5,480 points
292 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
288 views
0 votes
1 answer

A simple explanation of Naïve Bayes Classification

Naive Bayes Classification uses probability to classify ...READ MORE

Feb 22, 2022 in Machine Learning by Nandini
• 5,480 points
285 views
0 votes
1 answer

Probability that a formula fails in IEEE 754

It is feasible to evaluate these things ...READ MORE

Mar 23, 2022 in Machine Learning by Nandini
• 5,480 points
283 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
236 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
214 views