This commit is contained in:
s434695 2021-05-15 18:24:30 +02:00
parent f5158a272c
commit 2d0e53d1eb
2 changed files with 2 additions and 2 deletions

2
Jenkinsfile vendored
View File

@ -29,7 +29,7 @@ pipeline {
} }
stage('archiveArtifacts') { stage('archiveArtifacts') {
steps{ steps{
archiveArtifacts 'model1' archiveArtifacts 'model1.h5'
} }
} }
} }

View File

@ -39,4 +39,4 @@ model = regression_model()
model.fit(x_train, y_train, epochs = 600, verbose = 1) model.fit(x_train, y_train, epochs = 600, verbose = 1)
y_pred = model.predict(x_test) y_pred = model.predict(x_test)
model.save('model1') model.save('model1.h5')