This commit is contained in:
Jakub Zaręba 2023-05-11 00:06:52 +02:00
parent d8c24f4511
commit 162dcf95ab

View File

@ -6,16 +6,15 @@ pipeline {
}
}
environment {
PATH = "/path/to/your/python/bin:${env.PATH}"
SACRED_IGNORE_GIT = 'TRUE'
}
parameters {
string(name: 'EPOCHS', defaultValue: '10', description: 'Liczba Epok')
}
stages {
stage('Przygotuj') {
stage('Przygotowania') {
steps {
sh 'python -m pip install pandas tensorflow scikit-learn imbalanced-learn sacred pymongo mlflow'
sh 'pip install pandas tensorflow scikit-learn imbalanced-learn sacred pymongo mlflow'
}
}
stage('Pobierz dane') {