IUM_06 - add epochs, learning_rate and weight_decay parameters models/Jenkinsfile
This commit is contained in:
parent
300d8a82d5
commit
b59420d33d
16
models/Jenkinsfile
vendored
16
models/Jenkinsfile
vendored
@ -2,7 +2,21 @@ pipeline {
|
||||
agent any
|
||||
|
||||
parameters {
|
||||
|
||||
string(
|
||||
name: 'epochs',
|
||||
defaultValue: '1000',
|
||||
description: 'Number of epochs for training'
|
||||
)
|
||||
string(
|
||||
name: 'learning_rate',
|
||||
defaultValue: '0.001',
|
||||
description: 'Learning rate for training'
|
||||
)
|
||||
string(
|
||||
name: 'weight_decay',
|
||||
defaultValue: '0.001',
|
||||
description: 'Regularization parameter for training'
|
||||
)
|
||||
}
|
||||
|
||||
stages {
|
||||
|
Loading…
Reference in New Issue
Block a user