Fix
This commit is contained in:
parent
d27239a7d1
commit
ce684a4468
@ -25,7 +25,7 @@ node {
|
||||
checkout([$class: 'GitSCM', branches: [[name: '*/master']], extensions: [], userRemoteConfigs: [[credentialsId: 's487197', url: 'https://git.wmi.amu.edu.pl/s487197/ium_487197']]])
|
||||
}
|
||||
stage('Dockerfile'){
|
||||
def testImage = docker.image('s487197/ium:46')
|
||||
def testImage = docker.image('s487197/ium:47')
|
||||
testImage.inside{
|
||||
copyArtifacts filter: 'baltimore_train.csv', projectName: 's487197-create-dataset'
|
||||
sh "python3 ium_sacred.py -epochs $EPOCHS -lr $LR -validation_split $VALIDATION_SPLIT"
|
||||
|
@ -79,6 +79,7 @@ def my_main(epochs, lr, validation_split, _run):
|
||||
for his in hist.iterrows():
|
||||
_run.log_scalar('training.loss', his[1]['loss'])
|
||||
_run.log_scalar('accuracy', his[1]['accuracy'])
|
||||
model.save('baltimore_model')
|
||||
ex.add_artifact('baltimore_model')
|
||||
|
||||
"""
|
||||
@ -109,7 +110,5 @@ def my_main(epochs, lr, validation_split, _run):
|
||||
_run.log_scalar('accuracy', data['accuracy'])
|
||||
"""
|
||||
|
||||
|
||||
|
||||
ex.run()
|
||||
ex.run_commandline()
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user