This commit is contained in:
Jakub Zaręba 2023-05-10 23:54:43 +02:00
parent 04fe4bb719
commit 254b155fb6

View File

@ -1,10 +1,5 @@
pipeline {
agent {
docker {
image 'python:3.11'
args '-v /root/.cache:/root/.cache -u root'
}
}
agent any
environment {
SACRED_IGNORE_GIT = 'TRUE'
}
@ -12,7 +7,7 @@ pipeline {
string(name: 'EPOCHS', defaultValue: '10', description: 'Liczba Epok')
}
stages {
stage('Preparation') {
stage('Przygotowanie') {
steps {
sh 'pip install pandas tensorflow scikit-learn imbalanced-learn sacred pymongo mlflow'
}