test
This commit is contained in:
parent
4f862d237a
commit
d80a13ca2b
3
Jenkinsfile
vendored
3
Jenkinsfile
vendored
@ -3,7 +3,7 @@ pipeline {
|
|||||||
parameters {
|
parameters {
|
||||||
|
|
||||||
string(
|
string(
|
||||||
defaultValue: '',
|
defaultValue: 'shuhrer',
|
||||||
description: 'Kaggle username',
|
description: 'Kaggle username',
|
||||||
name: 'KAGGLE_USERNAME',
|
name: 'KAGGLE_USERNAME',
|
||||||
trim: false
|
trim: false
|
||||||
@ -33,6 +33,7 @@ pipeline {
|
|||||||
sh 'echo KAGGLE_USERNAME: $KAGGLE_USERNAME'
|
sh 'echo KAGGLE_USERNAME: $KAGGLE_USERNAME'
|
||||||
sh './download.sh'
|
sh './download.sh'
|
||||||
}
|
}
|
||||||
|
archiveArtifacts artifacts: 'd_test.csv, d_dev.csv, d_train.csv'
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
4
download.sh
Normal file → Executable file
4
download.sh
Normal file → Executable file
@ -1,3 +1,5 @@
|
|||||||
kaggle datasets download -d arushchillar/disneyland-reviews
|
kaggle datasets download -d arushchillar/disneyland-reviews
|
||||||
unzip disneyland-reviews.zip
|
unzip disneyland-reviews.zip
|
||||||
|
head DisneylandReviews.csv > d_test.csv
|
||||||
|
tail DisneylandReviews.csv > d_dev.csv
|
||||||
|
tail -n 20 DisneylandReviews.csv > d_train.csv
|
||||||
|
Loading…
Reference in New Issue
Block a user