From c68e8d94e604c6770d36a60dd9fcffa4a03952e7 Mon Sep 17 00:00:00 2001 From: Karolina Oparczyk Date: Sat, 22 May 2021 17:59:38 +0200 Subject: [PATCH] mlflow save model --- JenkinsfileNeural | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/JenkinsfileNeural b/JenkinsfileNeural index 232330c..cf143c0 100644 --- a/JenkinsfileNeural +++ b/JenkinsfileNeural @@ -23,8 +23,9 @@ node { sh ''' #!/usr/bin/env bash chmod 777 neural_network.sh + rm -r model ./neural_network.sh $EPOCHS | tee output.txt - mlflow run ium_434765 -e main + mlflow run . -e main ''' archiveArtifacts 'output.txt' archiveArtifacts 'model/**/*.*'