Skip to content

Commit

Permalink
Fixed import names
Browse files Browse the repository at this point in the history
  • Loading branch information
diegovalsesia committed Dec 20, 2022
1 parent 4bceb57 commit ef56a73
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions classification_ScanObject/models/dgcnn_hmodel.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
import torch
import torch.nn as nn
import torch.nn.functional as F
from modelsnet.ops.manifold_layers import GeodesicLayer, MobiusLayer, LogZero, ExpZero, GyroplaneConvLayer
from modelsnet.manifolds import PoincareBall, Euclidean
import modelsnet.ops.nn as hypnn
from models.ops.manifold_layers import GeodesicLayer, MobiusLayer, LogZero, ExpZero, GyroplaneConvLayer
from models.manifolds import PoincareBall, Euclidean
import models.ops.nn as hypnn


def knn(x, k):
Expand Down
6 changes: 3 additions & 3 deletions classification_ScanObject/models/hpointmlp.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
import torch.nn.functional as F
# from torch import einsum
# from einops import rearrange, repeat
from modelsnet.ops.manifold_layers import GeodesicLayer, MobiusLayer, LogZero, ExpZero, GyroplaneConvLayer
from modelsnet.manifolds import PoincareBall, Euclidean
import modelsnet.ops.nn as hypnn
from models.ops.manifold_layers import GeodesicLayer, MobiusLayer, LogZero, ExpZero, GyroplaneConvLayer
from models.manifolds import PoincareBall, Euclidean
import models.ops.nn as hypnn
import random
from pointnet2_ops import pointnet2_utils

Expand Down
6 changes: 3 additions & 3 deletions classification_ScanObject/models/pointmlp.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
import torch.nn.functional as F
# from torch import einsum
# from einops import rearrange, repeat
from modelsnet.ops.manifold_layers import GeodesicLayer, MobiusLayer, LogZero, ExpZero, GyroplaneConvLayer
from modelsnet.manifolds import PoincareBall, Euclidean
import modelsnet.ops.nn as hypnn
from models.ops.manifold_layers import GeodesicLayer, MobiusLayer, LogZero, ExpZero, GyroplaneConvLayer
from models.manifolds import PoincareBall, Euclidean
import models.ops.nn as hypnn

from pointnet2_ops import pointnet2_utils

Expand Down
6 changes: 3 additions & 3 deletions classification_ScanObject/models/pointmlp_modnet40.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
import torch.nn.functional as F
# from torch import einsum
# from einops import rearrange, repeat
from modelsnet.ops.manifold_layers import GeodesicLayer, MobiusLayer, LogZero, ExpZero, GyroplaneConvLayer
from modelsnet.manifolds import PoincareBall, Euclidean
import modelsnet.ops.nn as hypnn
from models.ops.manifold_layers import GeodesicLayer, MobiusLayer, LogZero, ExpZero, GyroplaneConvLayer
from models.manifolds import PoincareBall, Euclidean
import models.ops.nn as hypnn

from pointnet2_ops import pointnet2_utils

Expand Down

0 comments on commit ef56a73

Please sign in to comment.