This commit is contained in:
AWieczarek 2024-06-11 19:44:30 +02:00
parent 0916bfc576
commit 25619cb914
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
import pandas as pd
from sklearn.model_selection import train_test_split
data = pd.read_csv('data/beer_reviews.csv')
data = pd.read_csv('beer_reviews.csv')
train_data, test_data = train_test_split(data, test_size=0.2, random_state=42)

2
Jenkinsfile vendored
View File

@ -54,7 +54,7 @@ pipeline {
sh 'chmod +x sacred/sacred_training_model.py'
sh 'python3 sacred/sacred_training_model.py'
}
}
}
stage('Archive Artifacts from Experiments') {
steps {