Open kysunami opened 4 years ago
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 https://github.com/huggingface/transformers/issues/869
AttributeError: 'torch.dtype' object has no attribute 'type' downgrading to PyTorch 0.4.1 makes it work. https://github.com/facebookresearch/MUSE/issues/101
Facing compatibility issues.. How to use both in a single piece of code??
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 https://github.com/huggingface/transformers/issues/869
AttributeError: 'torch.dtype' object has no attribute 'type' downgrading to PyTorch 0.4.1 makes it work. https://github.com/facebookresearch/MUSE/issues/101
Facing compatibility issues.. How to use both in a single piece of code??