Blame view
run.sh
457 Bytes
14d6e0cb3 Basic run.sh for ... |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
# Pour le moment, le run ne fait qu'executer # quelques petites commandes que l'on souhaite # tester. OUTDIR="test" if [ ! -d "$OUTDIR" ]; then mkdir -p $OUTDIR fi #python3 bin/cluster_kmeans.py data/pvectors_1rst/pvectors_1.txt \ # data/pvectors_1rst/lst/train_1.lst \ # ${OUTDIR} --kmin 5 --kmax 7 python3 bin/extract_kmeans.py test/clustering_5.pkl data/pvectors_1rst/pvectors_1.txt \ data/pvectors_1rst/lst/val_1.lst #--outfile test.txt |