Machine Learning Questions | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 10

Machine Learning Questions

1. How is NumPy used for Machine Learning? I thought it is just an array library. 2. Should I use ML5.js or TensorFlow.js? 3. Does anyone know a SIMPLE tutorial / introduction for Machine Learning? Every tutorial I've seen is difficult to understand

28th Jun 2019, 6:59 PM
Clueless Coder
Clueless Coder - avatar
7 Answers
+ 6
NumPy is a library, that includes arrays and math functions, similar to the math library. One of the main advantage of NumPy is that it is much written in C, that can increase runtime speed of programs.
28th Jun 2019, 7:24 PM
Seb TheS
Seb TheS - avatar
+ 5
Try sentdex tutorial in youtube or machinelearningmastery.com is also good. Peace ✌️ keep learning 😊😊
29th Jun 2019, 5:11 PM
Prayog Karki
Prayog Karki - avatar
+ 3
Is hard then software development
30th Jun 2019, 4:15 PM
Andybirdgirl
Andybirdgirl - avatar
+ 2
Complete the code to load the digits dataset, do a train test split, build a MLPClassifier on the training set and print the accuracy score on the test set. X, y = load_digits(return_X_y=True) X_train, X_test, y_train, y_test = train_test_split(X, y) mlp = MLPClassifier().fit(X_train, y_train) print(mlp.score(X_test, y_test))
21st Nov 2020, 3:29 AM
Jason Chew
Jason Chew - avatar
+ 1
?
30th Jun 2019, 4:15 PM
Andybirdgirl
Andybirdgirl - avatar
- 2
LOL, ML is hardly difficult. It’s high school level math...
29th Jun 2019, 4:38 AM
KWG
KWG - avatar