I'm using my own dataset and I want to do a Deep Neural Network using tflearn.
This is a part of my code.
import tflearn
from tflearn.data_utils import load_csv
#Load the CSV File
X, Y = load_csv('data.csv')
#Split Data in train and Test with tflearn
¿How could I do a function in TFLearn to split X, Y and get train_X, test_X, train_Y, test_Y ?
I know how to do with numpy and other libraries, but I would like to do using tflearn.
In the
fit
method for thetflearn.DNN
model in tflearn (http://tflearn.org/models/dnn/), you can set the optionvalidation_set
to a float less than 1, and then the model will automatically split your input in a training and validation set, while training.Example
This will create a validation set while training, which is different from a test set. If you just want a train and test set, I recommend taking a look at the train_test_split function from sklearn, which also can split your data for you.