Compare commits
2 Commits
e8255501d9
...
76d8430766
Author | SHA1 | Date | |
---|---|---|---|
|
76d8430766 | ||
|
8fdb86cedf |
@ -1,5 +1,10 @@
|
||||
pipeline {
|
||||
agent any
|
||||
agent {
|
||||
docker {
|
||||
image 'my-python-mlflow'
|
||||
args '-v /root/.cache:/root/.cache -u root'
|
||||
}
|
||||
}
|
||||
environment {
|
||||
PATH = "/path/to/your/python/bin:${env.PATH}"
|
||||
SACRED_IGNORE_GIT = 'TRUE'
|
||||
@ -8,9 +13,9 @@ pipeline {
|
||||
string(name: 'EPOCHS', defaultValue: '10', description: 'Liczba Epok')
|
||||
}
|
||||
stages {
|
||||
stage('Przygotowanie') {
|
||||
stage('Przygotuj') {
|
||||
steps {
|
||||
sh 'pip install pandas tensorflow scikit-learn imbalanced-learn sacred pymongo mlflow'
|
||||
sh 'python -m pip install pandas tensorflow scikit-learn imbalanced-learn sacred pymongo mlflow'
|
||||
}
|
||||
}
|
||||
stage('Pobierz dane') {
|
||||
|
Loading…
Reference in New Issue
Block a user