Created
June 23, 2020 20:26
-
-
Save ahmetozlu/232fc761623e345ac4cde2b4f68eec4e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Read data from csv file for training and validation data | |
TrainingSet = numpy.genfromtxt("./training.csv", delimiter=",", skip_header=True) | |
ValidationSet = numpy.genfromtxt("./validation.csv", delimiter=",", skip_header=True) | |
# Split into input (X) and output (Y) variables | |
X1 = TrainingSet[:,0:6] | |
Y1 = TrainingSet[:,6] | |
X2 = ValidationSet[:,0:6] | |
Y2 = ValidationSet[:,6] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
How to get training.csv data file?