Compare commits
No commits in common. "cdf8523c94d98bea65bbf89f6e76a299188e9f19" and "ce684a4468fe8f3e20ad92a5067f6c375f7c72a4" have entirely different histories.
cdf8523c94
...
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:49')
|
||||
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"
|
||||
|
@ -53,7 +53,7 @@ def my_config():
|
||||
def prepare_message(epochs, lr, validation_split):
|
||||
return "{0} {1} {2}!".format(epochs, lr, validation_split)
|
||||
|
||||
@ex.automain
|
||||
@ex.main
|
||||
def my_main(epochs, lr, validation_split, _run):
|
||||
train = pd.read_csv('baltimore_train.csv')
|
||||
|
||||
@ -109,5 +109,6 @@ def my_main(epochs, lr, validation_split, _run):
|
||||
_run.log_scalar('rmse', data['rmse'])
|
||||
_run.log_scalar('accuracy', data['accuracy'])
|
||||
"""
|
||||
#ex.run()
|
||||
|
||||
ex.run_commandline()
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user