fix model.py

This commit is contained in:
Krzysztof Raczyński 2024-05-13 20:10:55 +02:00
parent 43c26e6d65
commit 40d06776f5
2 changed files with 8 additions and 13 deletions

5
Jenkinsfile vendored
View File

@ -44,10 +44,5 @@ pipeline {
archiveArtifacts artifacts: 'car_prices_predict_model.h5, predicted_selling_prices.csv', onlyIfSuccessful: true
}
}
stage('Archive Results') {
steps {
archiveArtifacts artifacts: 'data/*', onlyIfSuccessful: true
}
}
}
}

View File

@ -30,4 +30,4 @@ model.compile(optimizer='adam', loss='mean_squared_error')
model.fit(X_train, y_train, epochs=20, batch_size=32)
model.save('car_prices_predict_model.h5')
model.save('./car_prices_predict_model.h5')