no usage for epochs parameter
All checks were successful
s444354-training/pipeline/head This commit looks good
s444354-evaluation/pipeline/head This commit looks good

This commit is contained in:
Adrian Charkiewicz 2022-05-07 05:01:08 +02:00
parent c4b1a8f60e
commit c785c6d147

View File

@ -3,22 +3,14 @@ pipeline {
dockerfile true
}
parameters{
string(
defaultValue: '5',
description: 'Epoch number',
name: 'EPOCH_NUMBER'
)
}
stages {
stage('Copy') {
steps {
copyArtifacts projectName: 's444354-create-dataset'
sh 'ls -la'
sh 'echo $EPOCH_NUMBER'
sh 'python3 ./pytorch/pytorch.py $EPOCH_NUMBER'
sh 'python3 ./pytorch/pytorch.py'
}
}
stage('Archive') {