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
Getting following errors:
AttributeError: module 'torch.nn' has no attribute 'Identity' for old versions like PyTorch 0.4.1
AttributeError: 'torch.dtype' object has no attribute 'type' for latest versions like PyTorch 1.1.0
AttributeError: module 'torch.nn' has no attribute 'Identity' - It was added in PyTorch 1.1.0 so the solution is to upgrade to the latest version huggingface/transformers#869
AttributeError: 'torch.dtype' object has no attribute 'type' downgrading to PyTorch 0.4.1 makes it work. facebookresearch/MUSE#101
Facing compatibility issues.. How to use both in a single piece of code??
The text was updated successfully, but these errors were encountered:
Getting following errors:
AttributeError: module 'torch.nn' has no attribute 'Identity' for old versions like PyTorch 0.4.1
AttributeError: 'torch.dtype' object has no attribute 'type' for latest versions like PyTorch 1.1.0
AttributeError: module 'torch.nn' has no attribute 'Identity' - It was added in PyTorch 1.1.0 so the solution is to upgrade to the latest version huggingface/transformers#869
AttributeError: 'torch.dtype' object has no attribute 'type' downgrading to PyTorch 0.4.1 makes it work. facebookresearch/MUSE#101
Facing compatibility issues.. How to use both in a single piece of code??
The text was updated successfully, but these errors were encountered: