This commit is contained in:
Mateusz Piwowarski 2024-03-24 12:30:04 +01:00
parent cca8334fb2
commit 5ced0cf3fe

View File

@ -1,10 +1,12 @@
#!/bin/bash #!/bin/bash
ls -al
# Count the number of lines in the original dataset # Count the number of lines in the original dataset
wc -l < creditcard_shuf.csv > stats.txt wc -l < data/creditcard_shuf.csv > stats.txt
# Count the number of lines in the training and testing datasets # Count the number of lines in the training and testing datasets
wc -l < creditcard_train.csv > stats_train.txt wc -l < data/creditcard_train.csv > stats_train.txt
wc -l < creditcard_test.csv > stats_test.txt wc -l < daya/creditcard_test.csv > stats_test.txt
# Create a directory for the data # Create a directory for the data
mkdir -p data mkdir -p data