You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I trained the agent model from scrach, but i could not reproduce the result in your paper. I would like to get some advice about reproducibility.
I put some information on my environment bellow. Thank you.
in ./FirstTextWorldProblems/utils.py Saver Class
def _load_from_checkpoint(self):
load_from = self.pretrained_model_path
# print("Trying to load model from {}.".format(load_from))
try:
if self.device == 'cpu':
state_dict = torch.load(load_from, map_location='cpu')
else:
state_dict = torch.load(load_from, map_location=self.device)
# self.model.load_state_dict(state_dict, strict=True) # comment out because I don't want to load any trained weights about the model
self.model.to(self.device)
print("Loaded model from '{}'".format(load_from))
except:
print("Failed to load checkpoint {} ...".format(load_from))
IPython.embed()
I trained the agent model from scrach, but i could not reproduce the result in your paper. I would like to get some advice about reproducibility.
I put some information on my environment bellow. Thank you.
in ./FirstTextWorldProblems/utils.py Saver Class
Linux OS version
the package lists pip installed
Downloaded Dataset from here. It contains 4,440 different training games, 222 validation games, 514 test games.
https://competitions.codalab.org/competitions/21557#learn_the_details-data
The result which was runned 3 epoch on training dataset(4,400 games).
The training result on yout paper
I am looking forward to your good response. Thank you.
The text was updated successfully, but these errors were encountered: