2024-03-26 20:09:49 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2024-04-13 18:55:49 +02:00
|
|
|
wc -l artifacts/forest_train.csv > stats_train.txt
|
2024-03-26 20:09:49 +01:00
|
|
|
|
2024-04-13 18:55:49 +02:00
|
|
|
wc -l artifacts/forest_test.csv > stats_test.txt
|
2024-03-26 20:09:49 +01:00
|
|
|
|
2024-04-13 18:55:49 +02:00
|
|
|
wc -l artifacts/forest_validation.csv > stats_validation.txt
|
2024-03-26 20:17:34 +01:00
|
|
|
|
2024-03-26 20:18:25 +01:00
|
|
|
mv stats_train.txt stats_test.txt stats_validation.txt artifacts/
|