Dont load previous model in bert_classifier
Created by: grayskripko
I found that on each run my model shows better results. It was suspicious. I realized it uses the same trained model. I tried to remove "load_path" from config file in "train" section and it raised an exception File "....\Anaconda3\lib\site-packages\deeppavlov\models\bert\bert_classifier.py", line 98, in init and not tf.train.checkpoint_exists(str(self.load_path.resolve())): AttributeError: 'NoneType' object has no attribute 'resolve' What is good way to train a fresh model everytime and not to delete files manually before each training?