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
Hi,
when I try to import models, I get this error below which is this is Read only file. I have macbook M1.
Untitled-2.ipynb Cell 20 line 1
----> 1 from torchdrug import core, models, tasks
3 model = models.GIN(input_dim=dataset.node_feature_dim,
4 hidden_dims=[256, 256, 256, 256],
5 short_cut=True, batch_norm=True, concat_hidden=True)
Hi,
when I try to import models, I get this error below which is this is Read only file. I have macbook M1.
Untitled-2.ipynb Cell 20 line 1
----> 1 from torchdrug import core, models, tasks
3 model = models.GIN(input_dim=dataset.node_feature_dim,
4 hidden_dims=[256, 256, 256, 256],
5 short_cut=True, batch_norm=True, concat_hidden=True)
File ~/miniconda3/envs/torchdrug-env/lib/python3.8/site-packages/torchdrug/models/init.py:1
----> 1 from .chebnet import ChebyshevConvolutionalNetwork
2 from .gcn import GraphConvolutionalNetwork, RelationalGraphConvolutionalNetwork
3 from .gat import GraphAttentionNetwork
File ~/miniconda3/envs/torchdrug-env/lib/python3.8/site-packages/torchdrug/models/chebnet.py:6
3 import torch
4 from torch import nn
----> 6 from torchdrug import core, layers
7 from torchdrug.core import Registry as R
10 @R.register("models.ChebNet")
11 class ChebyshevConvolutionalNetwork(nn.Module, core.Configurable):
File ~/miniconda3/envs/torchdrug-env/lib/python3.8/site-packages/torchdrug/layers/init.py:1
----> 1 from .common import MultiLayerPerceptron, GaussianSmearing, MutualInformation, PairNorm, InstanceNorm, Sequential,
2 SinusoidalPositionEmbedding
4 from .block import ProteinResNetBlock, SelfAttentionBlock, ProteinBERTBlock
...
---> 29 self.fd = os.open(self.lock_file_path, os.O_CREAT | os.O_EXCL)
30 return True
31 except FileExistsError:
OSError: [Errno 30] Read-only file system: 'lock_embedding_0'
THANK YOU for your help
The text was updated successfully, but these errors were encountered: