Added archivization
This commit is contained in:
parent
13cacefdcd
commit
a05f64b709
@ -27,5 +27,7 @@ stage('Git clone') {
|
|||||||
"KAGGLE_KEY=${params.KAGGLE_KEY}" ]) {
|
"KAGGLE_KEY=${params.KAGGLE_KEY}" ]) {
|
||||||
sh 'download_data'
|
sh 'download_data'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
archiveArtifacts artifacts: 'data.val, data.test, data.train'
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -3,6 +3,6 @@
|
|||||||
kaggle datasets download -d brezniczky/2019-european-parliament-election-in-poland-data
|
kaggle datasets download -d brezniczky/2019-european-parliament-election-in-poland-data
|
||||||
unzip -o 2019-european-parliament-election-in-poland-data.zip
|
unzip -o 2019-european-parliament-election-in-poland-data.zip
|
||||||
shuf wyniki_gl_na_kand_po_obwodach_sheet_1.csv > data_shuf
|
shuf wyniki_gl_na_kand_po_obwodach_sheet_1.csv > data_shuf
|
||||||
head -n 100 vgsales_shuf > data.test
|
head -n 100 data_shuf > data.test
|
||||||
head -n 201 vgsales_shuf | tail -n 100 > data.val
|
head -n 201 data_shuf | tail -n 100 > data.val
|
||||||
head -n 1000 vgsales_shuf | tail -n 800 > data.train
|
head -n 1000 data_shuf | tail -n 800 > data.train
|
||||||
|
Loading…
Reference in New Issue
Block a user