monologg / JointBERT

Pytorch implementation of JointBERT: "BERT for Joint Intent Classification and Slot Filling"
Apache License 2.0
662 stars 186 forks source link

Getting exception model doesn't exist #27

Open deeptigoyal opened 2 years ago

deeptigoyal commented 2 years ago

Hi Team,

While training JoinBERT on my dataset using command:

!python main.py --task ss \ --model_dir ss_model \ --do_train --do_eval \ --use_crf

I am getting exception:

raise Exception("Model doesn't exists! Train first!") Exception: Model doesn't exists! Train first!

To resolve this issue, I made a change in trainer.py wherein I commented

if self.args.save_steps > 0 and global_step % self.args.save_steps == 0:

and replaced it with only

if self.args.save_steps > 0: #dip

Have I done right? hoping for reply .

Thanks