ium_z487186/script.sh

7 lines
353 B
Bash
Raw Normal View History

2023-04-20 22:45:53 +02:00
curl -o liver.data 'https://archive.ics.uci.edu/ml/machine-learning-databases/00225/Indian%20Liver%20Patient%20Dataset%20(ILPD).csv'
sort -R liver.data > liver.data.shuf
head -n 120 liver.data.shuf > liver.data.test
head -n 240 liver.data.shuf | tail -n 120 > liver.data.dev
tail -n +241 liver.data.shuf > liver.data.train
2023-04-20 23:30:23 +02:00
rm liver.data liver.data.shuf