mlflow fix3
Some checks failed
s444452-training/pipeline/head There was a failure building this commit

This commit is contained in:
AdamOsiowy123 2022-05-15 23:04:02 +02:00
parent c1daf70504
commit ac78319450
4 changed files with 5 additions and 5 deletions

View File

@ -1,7 +1,7 @@
node {
checkout scm
try {
docker.image('s444452/ium:1.4').inside {
docker.image('s444452/ium:1.4').inside('-v /code/mlruns:/code/mlruns') {
stage('Preparation') {
properties([
parameters([

View File

@ -1,7 +1,7 @@
node {
checkout scm
try {
docker.image('s444452/ium:1.4').inside('-v /mlruns:/mlruns') {
docker.image('s444452/ium:1.4').inside('-v /code/mlruns:/code/mlruns') {
stage('Preparation') {
properties([
pipelineTriggers([upstream(threshold: hudson.model.Result.SUCCESS, upstreamProjects: "s444452-create-dataset")]),
@ -47,7 +47,7 @@ node {
stage('Archive artifacts') {
archiveArtifacts "model/neural_net"
archiveArtifacts "my_runs/**"
archiveArtifacts "mlruns/**"
archiveArtifacts "/code/mlruns/**"
}
}
} catch (e) {

View File

@ -17,7 +17,7 @@ import logging
logging.basicConfig(level=logging.WARN)
logger = logging.getLogger(__name__)
mlflow.set_tracking_uri("http://172.17.0.1:5000")
# mlflow.set_tracking_uri("http://172.17.0.1:5000")
mlflow.set_experiment("s444452")
ex = Experiment(name='s444452_fake_job_classification_evaluation', save_git_info=False)

View File

@ -19,7 +19,7 @@ import logging
logging.basicConfig(level=logging.WARN)
logger = logging.getLogger(__name__)
mlflow.set_tracking_uri("http://172.17.0.1:5000")
# mlflow.set_tracking_uri("http://172.17.0.1:5000")
mlflow.set_experiment("s444452")
ex = Experiment(name='s444452_fake_job_classification_training', save_git_info=False)