adding all files done so far

This commit is contained in:
2019-07-10 20:18:31 +01:00
parent 13c0e9cb4d
commit e3ac390e8b
76 changed files with 8644 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
from sklearn.cross_validation import train_test_split
x_train, x_test, y_train, y_test = train_test_split(x, y , train_size = 0.7, random_state = 90)
normalizing methods : https://docs.microsoft.com/en-us/azure/machine-learning/studio-module-reference/normalize-data
https://en.wikipedia.org/wiki/Feature_scaling
we apply the normalizing methods to the training data first, then seperately to the test data to compare!