Blame view
config/config_pv_from_xv.sh
653 Bytes
e63ab06fc
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
if [ -z "$kfold" ] then kfold=1 fi if [ -z "${t}" ] then t=2.0 fi OUTDIR="exp/kmeans_euclidian/pv_from_xv/${kfold}" DATADIR="data" MOTHER_LST_DIR="/local_disk/pegasus/laboinfo/mquillot/vocal_similarity_system/data/prot_alpha" NEW_LSTDIR="${OUTDIR}/lst" VECTOR_FILE="/local_disk/pegasus/laboinfo/mquillot/knowledge_distillation/exp/kd_xvectors/${kfold}/${t}/teacher/masseffect_pvectors.txt" # To specify if there's only one VECTOR_FILES_ONE=true # Specify there's only one file ORIGINAL_VECTOR_FILE="/local_disk/pegasus/laboinfo/mquillot/knowledge_distillation/data/masseffect_xvectors.txt" MIN_KFOLD=${kfold} MAX_KFOLD=${kfold} KMIN=2 KMAX=100 |