Change artifact save - Zadanie 6 - training

This commit is contained in:
Zofia Galla 2021-05-15 16:57:41 +02:00
parent bd02ac8bd9
commit 0eb38276bc
2 changed files with 2 additions and 2 deletions

View File

@ -24,7 +24,7 @@ pipeline {
} }
stage('Archive artifacts') { stage('Archive artifacts') {
steps{ steps{
archiveArtifacts artifacts: 'model_movies/**/*.*' archiveArtifacts artifacts: 'model_movies.h5'
} }
} }
} }

View File

@ -28,6 +28,6 @@ model.fit(
y = y_train, y = y_train,
verbose=0, epochs=99) verbose=0, epochs=99)
model.save('model_movies') model.save('model_movies.h5')