This commit is contained in:
Jakub Zaręba 2023-05-10 20:08:25 +02:00
parent c7c4430c77
commit 8f458fd54a
3 changed files with 3 additions and 2 deletions

View File

@ -11,7 +11,7 @@ pipeline {
stages {
stage('Preparation') {
steps {
sh 'pip install pandas tensorflow scikit-learn imbalanced-learn sacred'
sh 'pip install pandas tensorflow scikit-learn imbalanced-learn sacred pymongo'
}
}
stage('Pobierz dane') {

View File

@ -23,7 +23,7 @@ pipeline {
}
stage('Przygotowanie') {
steps {
sh 'pip install pandas tensorflow scikit-learn matplotlib sacred'
sh 'pip install pandas tensorflow scikit-learn matplotlib sacred pymongo'
}
}
stage('Ewaluuj model') {

View File

@ -4,6 +4,7 @@ from sacred.observers import MongoObserver, FileStorageObserver
ex = Experiment('s487187-training')
ex.observers.append(MongoObserver(url='mongodb://admin:IUM_2021@172.17.0.1:27017', db_name='sacred'))
ex.observers.append(FileStorageObserver('results'))
ex.use_git = False
@ex.config
def my_config():