From 4fa82bee9ecf510c3ea19047e463c4d005d96ee0 Mon Sep 17 00:00:00 2001 From: riya singhal Date: Fri, 10 Jun 2016 15:56:22 +0530 Subject: [PATCH 1/2] added one comment --- svm_sklearn.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/svm_sklearn.py b/svm_sklearn.py index 8f9953f..573035f 100644 --- a/svm_sklearn.py +++ b/svm_sklearn.py @@ -6,7 +6,7 @@ trainLabels = np.loadtxt(open("trainLabels.csv","rb"), delimiter=",", skiprows=0) test = np.loadtxt(open("test.csv","rb"), delimiter=",", skiprows=0) - +#svm X, y = train, trainLabels s = svm.SVC() s.fit(X, y) From d5e7117c77df55950485bc0c64889d5421455f43 Mon Sep 17 00:00:00 2001 From: riya singhal Date: Fri, 10 Jun 2016 16:26:08 +0530 Subject: [PATCH 2/2] changes made to readme --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index a411757..a4a9345 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,5 @@ +#ITS README +#NEW README # Python Data Science Tutorials - This repo contains a curated list of Python tutorials for Data Science, NLP and Machine Learning.