- Modify dataset.py line 39 <path_to_dataset> to local path
- Train MBD classifier
python main.py -e 100 -l 5e-6 -w 1e-2 -s 20 -m 0.0
- Modify MBD_Model.py line 55 <path_to_saved_model_pkl_file> to local path
- Modify utils.py load_pretrained_arcface function
- Uncomment one of the experiments you want to run in either </inference/configs/run-open-intent-induction-baselines.jsonnet> or </inference/configs/run-intent-clustering-baselines.jsonnet>
- To Run Intent clustering (Task 1) tye the underneath code
python3 -m sitod.run_experiment \
--data_root_dir dstc11 \
--experiment_root_dir results \
--config configs/run-intent-clustering-baselines.jsonnet
- To Run Intent Induction (Task 2) tye the underneath code
python3 -m sitod.run_experiment \
--data_root_dir dstc11 \
--experiment_root_dir results \
--config configs/run-open-intent-induction-baselines.jsonnet
for inference : saved models are necessary. If you need, ask me.
for training PGT : MDB pkl file is necessary. if you need, ask me.
[email protected]