From d6d867332356e380f7911f6c417e1d6193ba9268 Mon Sep 17 00:00:00 2001 From: Tejas Vipin Date: Thu, 5 Sep 2024 18:37:47 +0530 Subject: [PATCH] Fix reduction of training data --- svm/svm_author_id.py | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/svm/svm_author_id.py b/svm/svm_author_id.py index 35390d60ad6..596e7363783 100644 --- a/svm/svm_author_id.py +++ b/svm/svm_author_id.py @@ -27,13 +27,3 @@ ######################################################### ######################################################### -''' -You'll be Provided similar code in the Quiz -But the Code provided in Quiz has an Indexing issue -The Code Below solves that issue, So use this one -''' - -# features_train = features_train[:int(len(features_train)/100)] -# labels_train = labels_train[:int(len(labels_train)/100)] - -#########################################################