Susie0731
Susie0731
> https://drive.google.com/open?id=1g9oONLRZrfqqd0gpRMy-9Bocmep65z0m Hi! It seems that the zip file of the trained model is broken. When I tried to unzip this file, it didn't work!
> This is not for you to unzip it. It's a .tar model to be loaded directly in PyTorch. This is not the trained model zipped in a file, it...
> torch.load('BEST_checkpoint_han.pth.tar') Well, sorry! There are still some bugs... After I add this code :**torch.load('BEST_checkpoint_han.pth.tar')** to train.py and modify: **word2vec_file = os.path.join(data_folder, 'word2vec_model')** to :**word2vec_file = os.path.join(data_folder, 'BEST_checkpoint_han.pth.tar')**, it didn't...
> Why are you adding it to the `train.py`? You want to do evaluation, right? Just run `eval.py`, no need to change anything else. The checkpoint name is already in...