update jenkinsfile_train-sacred, dllib-mlflow.py
All checks were successful
s444356-evaluation/pipeline/head This commit looks good
s444356-training/pipeline/head This commit looks good

This commit is contained in:
Maciej Czajka 2022-05-11 17:34:11 +02:00
parent c7a44e7ab7
commit 8309c847c6
2 changed files with 4 additions and 4 deletions

View File

@ -20,7 +20,7 @@ from sacred.observers import MongoObserver
# EPOCHS = int(sys.argv[1])
mlflow.set_tracking_uri("http://172.17.0.1:5000")
# mlflow.set_tracking_uri("http://172.17.0.1:5000")
mlflow.set_experiment("s444356")
class Model(nn.Module):

View File

@ -21,9 +21,9 @@ pipeline {
archiveArtifacts artifacts: 'games_model.pkl'
sh 'ls -al'
sh 'cat MLProject'
sh 'ls Biblioteka_DL'
archiveArtifacts artifacts: 'Biblioteka_DL/mlruns/**'
sh 'rm -r Biblioteka_DL/mlruns'
sh 'ls mlruns'
archiveArtifacts artifacts: 'mlruns/**'
sh 'rm -r mlruns'
}
}
}