Replies: 1 comment
-
The |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
import torch
import torch_geometric
from torch_geometric.datasets import TUDataset, ShapeNet
import trimesh
import torch_geometric.transforms as T
dataset = ShapeNet(root="/Users/wangweimin/Workspaces/pytorch-geometric-datasets/SHAPENET", pre_transform=T.KNNGraph(k=2))
data = dataset[0]
--> mesh = torch_geometric.utils.to_trimesh(data)
#got error:
AttributeError: 'GlobalStorage' object has no attribute 'face'
Beta Was this translation helpful? Give feedback.
All reactions