tipe/make.sh

87 lines
2.1 KiB
Bash
Raw Normal View History

2022-03-21 17:18:49 +01:00
#!/bin/bash
2022-03-25 19:19:57 +01:00
FLAGS="-std=c99 -lm"
2022-04-08 19:34:54 +02:00
OUT="out"
2022-03-25 19:19:57 +01:00
2022-03-21 17:18:49 +01:00
if [[ $1 == "preview" ]]; then
[[ $2 ]] || set -- "$1" "build"
if [[ $2 == "build" ]]; then
2022-04-08 19:34:54 +02:00
mkdir -p "$OUT"
2022-03-27 15:03:13 +02:00
echo "Compilation de src/mnist/preview.c"
2022-04-08 19:34:54 +02:00
gcc src/mnist/preview.c -o "$OUT/preview_mnist" $FLAGS
2022-03-27 15:03:13 +02:00
echo "Fait."
2022-03-21 17:18:49 +01:00
exit
elif [[ $2 == "train" ]]; then
2022-04-08 19:34:54 +02:00
[[ -f "$OUT/preview_mnist" ]] || $0 preview build
"$OUT/preview_mnist" data/mnist/train-images-idx3-ubyte data/mnist/train-labels-idx1-ubyte
2022-03-21 17:18:49 +01:00
exit
elif [[ $2 == "t10k" ]]; then
2022-04-08 19:34:54 +02:00
[[ -f "$OUT/preview_mnist" ]] || $0 preview build
"$OUT/preview_mnist" data/mnist/t10k-images-idx3-ubyte data/mnist/t10k-labels-idx1-ubyte
2022-03-21 17:18:49 +01:00
exit
fi
fi
2022-03-27 14:42:00 +02:00
if [[ $1 == "test" ]]; then
[[ $2 ]] || set -- "$1" "build"
if [[ $2 == "build" ]]; then
2022-04-08 19:34:54 +02:00
mkdir -p "$OUT"
2022-03-27 14:42:00 +02:00
for i in $(ls test); do
2022-03-27 15:03:13 +02:00
echo "Compilation de test/$i"
2022-04-08 19:34:54 +02:00
gcc "test/$i" -o "$OUT/test_$(echo $i | awk -F. '{print $1}')" $FLAGS
2022-03-27 15:03:13 +02:00
echo "Fait."
2022-03-27 14:42:00 +02:00
done
exit
elif [[ $2 == "run" ]]; then
$0 test build
2022-03-27 14:54:20 +02:00
mkdir -p .test-cache
2022-04-08 19:34:54 +02:00
for i in $(ls "$OUT/test_"*); do
2022-03-27 14:42:00 +02:00
echo "--- $i ---"
$i
done
exit
fi
fi
2022-03-27 15:03:13 +02:00
2022-04-08 19:34:54 +02:00
if [[ $1 == "build" ]]; then
echo "Compilation de src/mnist/main.c"
gcc src/mnist/main.c -o "$OUT/main" $FLAGS
echo "Fait."
exit
fi
if [[ $1 == "train" ]]; then
[[ -f "$OUT/main" ]] || $0 build
[[ $2 ]] || set -- "$1" "train"
mkdir -p .cache
"$OUT/main" train \
--images "data/mnist/$2-images-idx3-ubyte" \
--labels "data/mnist/$2-labels-idx1-ubyte" \
--out ".cache/reseau.bin"
exit
fi
if [[ $1 == "recognize" ]]; then
if [[ $2 ]]; then
[[ $3 ]] || set -- "$1" "$2" "text"
[[ -f "$OUT/main" ]] || $0 build
[[ -f ".cache/reseau.bin" ]] || $0 train train
"$OUT/main" recognize \
--modele ".cache/reseau.bin" \
--in "$2" \
--out "$3"
exit
else
echo "Pas de fichier d'entrée spécifié. Abandon"
exit 1
fi
fi
2022-03-27 15:03:13 +02:00
echo "Usage:"
echo -e "\t$0 preview ( build | train | t10k )"
2022-04-08 19:34:54 +02:00
echo -e "\t$0 test ( build | run )"
echo -e "\t$0 build"
echo -e "\t$0 train ( train | t10k )"
echo -e "\t$0 recognize [FILENAME] ( text | json )\n"
2022-03-27 15:03:13 +02:00
echo -e "Les fichiers de test sont recompilés à chaque exécution,\nles autres programmes sont compilés automatiquement si manquants"