jeandersonbc/predictive-method-logging

Save test set to reuse in other experiments

Closed this issue · 1 comments

We want to train a model with Apache data and test against the same test set from our industry dataset.
Reference:

# Train(80%) Test (20%) split
X_train, X_test, y_train, y_test = train_test_split(
X, y, test_size=0.2, random_state=RANDOM_SEED, stratify=y, shuffle=True
)

Closing as this is not relevant anymore. Current version of evaluation scripts allow to reuse the test set across different experiments.