fix
This commit is contained in:
parent
f20be256fe
commit
4c816f3506
@ -23,6 +23,7 @@ WORKDIR /app
|
|||||||
|
|
||||||
COPY lab2/download.sh .
|
COPY lab2/download.sh .
|
||||||
COPY biblioteka_DL/dllib.py .
|
COPY biblioteka_DL/dllib.py .
|
||||||
|
COPY biblioteka_DL/evaluate.py .
|
||||||
COPY biblioteka_DL/imdb_top_1000.csv .
|
COPY biblioteka_DL/imdb_top_1000.csv .
|
||||||
|
|
||||||
RUN chmod +x ./download.sh
|
RUN chmod +x ./download.sh
|
||||||
|
@ -22,8 +22,20 @@ pipeline {
|
|||||||
archiveArtifacts artifacts: 'mae.txt, rmse.txt, mse.txt, evr.txt, metrics.png', followSymlinks: false
|
archiveArtifacts artifacts: 'mae.txt, rmse.txt, mse.txt, evr.txt, metrics.png', followSymlinks: false
|
||||||
script {
|
script {
|
||||||
ACC = sh (
|
ACC = sh (
|
||||||
script: 'tail -1 metrics.txt',
|
script: 'tail -1 mae.txt',
|
||||||
returnStdout: true
|
returnStdout: true
|
||||||
|
).trim()
|
||||||
|
ACC = sh (
|
||||||
|
script: 'tail -1 rmse.txt',
|
||||||
|
returnStdout: true
|
||||||
|
).trim()
|
||||||
|
ACC = sh (
|
||||||
|
script: 'tail -1 mse.txt',
|
||||||
|
returnStdout: true
|
||||||
|
).trim()
|
||||||
|
ACC = sh (
|
||||||
|
script: 'tail -1 evr.txt',
|
||||||
|
returnStdout: true
|
||||||
).trim()
|
).trim()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user