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
We were trying to reproduce the performance of the parsing module with four different random seeds (1, 11, 111, 1111), while the average f1 score given by the default script is 47.6, with max f1 around 50.4.
For your reference, we are controlling random seeds using the following function:
def set_random_seed(seed=0):
random.seed(seed)
numpy.random.seed(seed)
torch.manual_seed(seed)
torch.cuda.manual_seed(seed)
torch.cuda.manual_seed_all(seed) # if you are using multi-GPU.
torch.backends.cudnn.enabled = False
torch.backends.cudnn.benchmark = False
torch.backends.cudnn.deterministic = True
If you may, could you please kindly share the random seeds or any specific settings aside from the default parameters for the Table 1 experiments for reproduction? Thank you!
The text was updated successfully, but these errors were encountered:
Thank you for the awesome work!
We were trying to reproduce the performance of the parsing module with four different random seeds (1, 11, 111, 1111), while the average f1 score given by the default script is 47.6, with max f1 around 50.4.
For your reference, we are controlling random seeds using the following function:
If you may, could you please kindly share the random seeds or any specific settings aside from the default parameters for the Table 1 experiments for reproduction? Thank you!
The text was updated successfully, but these errors were encountered: