Compare commits
2 Commits
8eb731b53f
...
31ffbd656c
Author | SHA1 | Date | |
---|---|---|---|
|
31ffbd656c | ||
|
1afa0cf50e |
40
Jenkinsfile
vendored
40
Jenkinsfile
vendored
@ -1,10 +1,36 @@
|
|||||||
pipeline {
|
pipeline {
|
||||||
agent any
|
agent any
|
||||||
stages {
|
parameters{
|
||||||
stage('Stage 1') {
|
string(
|
||||||
steps {
|
defaultValue: 'piotrwrzodak',
|
||||||
echo 'Hello world!'
|
description: 'Kaggle username',
|
||||||
}
|
name: 'KAGGLE_USERNAME',
|
||||||
}
|
trim: false
|
||||||
|
)
|
||||||
|
password(
|
||||||
|
defaultValue: '',
|
||||||
|
description: 'Kaggle token taken from kaggle.json file, as described in https://github.com/Kaggle/kaggle-api#api-credentials',
|
||||||
|
name: 'KAGGLE_KEY'
|
||||||
|
)
|
||||||
|
string(
|
||||||
|
defaultValue: '1000',
|
||||||
|
description: 'CUTOFF',
|
||||||
|
name: 'CUTOFF',
|
||||||
|
trim: false
|
||||||
|
)
|
||||||
}
|
}
|
||||||
|
stages {
|
||||||
|
stage('Build') {
|
||||||
|
steps {
|
||||||
|
sh 'git clone https://git.wmi.amu.edu.pl/s444510/ium_z444510.git'
|
||||||
|
withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}", "KAGGLE_KEY=${params.KAGGLE_KEY}" ]) {
|
||||||
|
sh 'kaggle datasets download -d thedevastator/airbnb-prices-in-european-cities'
|
||||||
|
sh 'unzip airbnb-prices-in-european-cities.zip -d ./ium_z444510'
|
||||||
|
sh 'rm airbnb-prices-in-european-cities.zip'
|
||||||
|
sh 'ls -a'
|
||||||
|
sh 'ls -a ./ium_z444510'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
17
create-dataset.py
Normal file
17
create-dataset.py
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
import pandas as pd
|
||||||
|
import os
|
||||||
|
import numpy as np
|
||||||
|
|
||||||
|
|
||||||
|
cutoff = int(os.environ['CUTOFF'])
|
||||||
|
|
||||||
|
data = pd.read_csv('./ium_z444510/barcelona_weekends.csv')
|
||||||
|
data = data.sample(cutoff)
|
||||||
|
data = data.iloc[:, 1:]
|
||||||
|
|
||||||
|
train_set, dev_set, test_set = np.split(data.sample(frac=1, random_state=42),
|
||||||
|
[int(.6 * len(data)), int(.8 * len(data))])
|
||||||
|
|
||||||
|
train_set.to_csv('train.csv', index=False)
|
||||||
|
dev_set.to_csv('dev.csv', index=False)
|
||||||
|
test_set.to_csv('test.csv', index=False)
|
Loading…
Reference in New Issue
Block a user