Who is learning python or c++ for machine learning? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3

Who is learning python or c++ for machine learning?

I just want to start the thread for machine learning enthusiastic people.

16th Aug 2017, 11:44 PM
Vijay
Vijay - avatar
9 Answers
+ 5
>>> from sklearn import svm >>> X = [[ 0 , 0 ], [ 1 , 1 ]] >>> y = [ 0 , 1 ] >>> clf = svm . SVC() >>> clf. fit(X, y) SVC(C=1.0, cache_size=200, class_weight=None, coef0=0.0, decision_function_shape='ovr', degree=3, gamma='auto', kernel='rbf', max_iter=-1, probability=False, random_state=None, shrinking=True, tol=0.001, verbose=False) SVC and NuSVC are similar methods, but accept slightly different sets of parameters and have different mathematical formulations. On the other hand, LinearSVC is another implementation of Support Vector Classification for the case of a linear kernel. Note that LinearSVC does not accept keyword kernel , as this is assumed to be linear. It also lacks some of the members of SVC and NuSVC , like support_ . As other classifiers, SVC , NuSVC and LinearSVC take as input two arrays: an array X of size [n_samples, n_features] holding the training samples, and an array y of class labels (strings or integers Do you have an email?
17th Aug 2017, 8:45 AM
Given
Given - avatar
+ 5
cool, I just started to work on machine learning. do you experience in this field?
17th Aug 2017, 7:12 AM
Vijay
Vijay - avatar
+ 5
nice, these all things are new for me. I worked baysian classifier. Now, I start to work on svm classifier.
17th Aug 2017, 7:26 AM
Vijay
Vijay - avatar
+ 5
Thanks for response. currently, I am working on hand detection from depth data by machine learning. so, I am studying about svm classifier. It will be helpful, if you have any idea about this. thank you.
17th Aug 2017, 9:04 AM
Vijay
Vijay - avatar
+ 5
I'll email you on my thoughts
17th Aug 2017, 9:19 AM
Given
Given - avatar
+ 4
Python ML... I'm learning it
17th Aug 2017, 5:08 AM
Given
Given - avatar
+ 4
yeah ☺
18th Aug 2017, 6:59 PM
Given
Given - avatar
+ 3
Yeah for statistical analysis and sentiment analysis using nltk, scikit-learn, matplotlib for graphing varience, and regression plots and pybrain... what about you?
17th Aug 2017, 7:21 AM
Given
Given - avatar
+ 3
great✌️
17th Aug 2017, 9:38 AM
Vijay
Vijay - avatar