This commit is contained in:
Maciej Sobkowiak 2021-05-16 19:41:13 +02:00
parent 1c820d6b2a
commit 6bba24a4b9
3 changed files with 3 additions and 3 deletions

2
.gitignore vendored
View File

@ -1,3 +1,3 @@
__pycache__ __pycache__
.ipynb_checkpoints .ipynb_checkpoints
sucides_model.h5 suicide_model.h5

View File

@ -40,7 +40,7 @@ pipeline {
} }
stage('archive-model') { stage('archive-model') {
steps{ steps{
archiveArtifacts 'sucides_model.h5' archiveArtifacts 'suicide_model.h5'
} }
} }
stage('send-mail') { stage('send-mail') {

View File

@ -91,4 +91,4 @@ test_predictions = model.predict(X_test).flatten()
predictions = model.predict(X_test) predictions = model.predict(X_test)
pd.DataFrame(predictions).to_csv('results.csv') pd.DataFrame(predictions).to_csv('results.csv')
model.save('sucides_model.h5') model.save('suicide_model.h5')