mirror of
https://github.com/Doctorado-ML/Stree_datasets.git
synced 2025-08-15 07:26:02 +00:00
23 lines
533 B
Bash
Executable File
23 lines
533 B
Bash
Executable File
rm -f data/oc1output/*
|
|
rm -f data/csv/*
|
|
printf "Generating csv datasets\n"
|
|
printf "========================\n"
|
|
python oc1datasets.py
|
|
printf "\n"
|
|
printf "Processing datasets\n"
|
|
printf "===================\n"
|
|
while read dataset
|
|
do
|
|
printf "*%-30s: " $dataset
|
|
for seed in 57 31 1714 17 23 79 83 97 7 1
|
|
do
|
|
printf "$seed, "
|
|
mktree -V5 -tdata/csv/$dataset.csv -s$seed >data/oc1output/${dataset}_$seed.txt
|
|
done
|
|
echo "done"
|
|
done <scripts/all.txt
|
|
printf "\n"
|
|
printf "Generating SQL\n"
|
|
printf "==============\n"
|
|
python oc1results.py
|