11cf3aa79765fb655b74e4064dbbbd49b91f9267,tutorials/tpot_iris_pipeline.py,,,#,8

Before Change



// NOTE: Make sure that the class is labeled "class" in the data file
tpot_data = pd.read_csv("PATH/TO/DATA/FILE", sep="COLUMN_SEPARATOR")
training_indeces, testing_indeces = next(iter(StratifiedShuffleSplit(tpot_data["class"].values, n_iter=1, train_size=0.75, test_size=0.25)))


result1 = tpot_data.copy()

After Change



// NOTE: Make sure that the class is labeled "class" in the data file
tpot_data = pd.read_csv("PATH/TO/DATA/FILE", sep="COLUMN_SEPARATOR")
training_indices, testing_indices = train_test_split(tpot_data.index, stratify = tpot_data["class"].values, train_size=0.75, test_size=0.25)


result1 = tpot_data.copy()
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 5

Instances


Project Name: EpistasisLab/tpot
Commit Name: 11cf3aa79765fb655b74e4064dbbbd49b91f9267
Time: 2016-03-12
Author: pronojitsaha@gmail.com
File Name: tutorials/tpot_iris_pipeline.py
Class Name:
Method Name:


Project Name: EpistasisLab/tpot
Commit Name: 11cf3aa79765fb655b74e4064dbbbd49b91f9267
Time: 2016-03-12
Author: pronojitsaha@gmail.com
File Name: tutorials/tpot_titanic_pipeline.py
Class Name:
Method Name:


Project Name: EpistasisLab/tpot
Commit Name: 11cf3aa79765fb655b74e4064dbbbd49b91f9267
Time: 2016-03-12
Author: pronojitsaha@gmail.com
File Name: tutorials/tpot_mnist_pipeline.py
Class Name:
Method Name: