This commit is contained in:
2024-10-09 16:13:22 +00:00
commit 0ea3f048dc
437 changed files with 44406 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
from abc import abstractmethod
from torch import nn
class PointsEncoder(nn.Module):
def __init__(self):
super(PointsEncoder, self).__init__()
@abstractmethod
def encode_points(self, pts):
pass