2024-03-26 23:02:02 +01:00
|
|
|
pipeline {
|
2024-04-02 20:38:20 +02:00
|
|
|
agent {
|
|
|
|
dockerfile true
|
|
|
|
}
|
2024-03-26 23:02:02 +01:00
|
|
|
|
|
|
|
parameters {
|
|
|
|
string(
|
|
|
|
defaultValue: '10000',
|
2024-05-26 13:59:07 +02:00
|
|
|
name: 'CUTOFF',
|
2024-03-26 23:02:02 +01:00
|
|
|
description: 'Liczba wierszy do obcięcia ze zbioru danych')
|
2024-05-26 13:59:07 +02:00
|
|
|
string(
|
|
|
|
defaultValue: '--epochs 100 --batch_size 32 --learning_rate 0.01',
|
|
|
|
name: 'TRAINING_PARAMS',
|
|
|
|
description: 'Parametry trenowania'
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
environment {
|
|
|
|
DATASET_PROJECT = 's123456-create-dataset'
|
|
|
|
DATA_DIR = 'data'
|
2024-03-26 23:02:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
stages {
|
|
|
|
stage('Clone repository') {
|
|
|
|
steps {
|
|
|
|
checkout([$class: 'GitSCM', branches: [[name: '*/master']], userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/s464906/ium_464906']]])
|
|
|
|
}
|
|
|
|
}
|
2024-05-26 13:59:07 +02:00
|
|
|
stage('Copy Dataset') {
|
|
|
|
steps {
|
|
|
|
script {
|
|
|
|
copyArtifacts(
|
|
|
|
projectName: "${DATASET_PROJECT}",
|
|
|
|
selector: lastSuccessful(),
|
|
|
|
target: "${env.DATA_DIR}"
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-03-26 23:02:02 +01:00
|
|
|
stage('Set execute permission') {
|
|
|
|
steps {
|
|
|
|
script {
|
|
|
|
sh 'chmod +x data_processing.sh'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
stage('Run shell script') {
|
|
|
|
steps {
|
|
|
|
script {
|
|
|
|
sh './data_processing.sh'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
post {
|
|
|
|
success {
|
|
|
|
archiveArtifacts artifacts: 'results.txt', allowEmptyArchive: true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-05-26 13:59:07 +02:00
|
|
|
|
|
|
|
stage('Install Dependencies') {
|
|
|
|
steps {
|
|
|
|
sh 'pip install -r requirements.txt'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
stage('Train Model') {
|
|
|
|
steps {
|
|
|
|
sh "python model.py ${params.TRAINING_PARAMS}"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
stage('Archive Model') {
|
|
|
|
steps {
|
|
|
|
archiveArtifacts artifacts: 'orange_quality_model_tf.h5', allowEmptyArchive: true
|
|
|
|
archiveArtifacts artifacts: 'predictions_tf.json', allowEmptyArchive: true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
post {
|
|
|
|
always {
|
|
|
|
cleanWs()
|
|
|
|
}
|
2024-03-26 23:02:02 +01:00
|
|
|
}
|
|
|
|
}
|