from abc import abstractmethod from torch import nn class ViewFinder(nn.Module): def __init__(self): super(ViewFinder, self).__init__() @abstractmethod def next_best_view(self, seq_feat): pass