+ 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
7 Respostas
+ 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.
+ 5
Try sentdex tutorial in youtube or machinelearningmastery.com is also good.
Peace ✌️ keep learning 😊😊
+ 3
Is hard then software development
+ 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))
+ 1
?
- 2
LOL, ML is hardly difficult. It’s high school level math...