2024-08-21 17:11:56 +08:00
|
|
|
from abc import abstractmethod
|
|
|
|
|
|
|
|
from torch import nn
|
|
|
|
|
|
|
|
|
|
|
|
class ViewFinder(nn.Module):
|
|
|
|
def __init__(self):
|
|
|
|
super(ViewFinder, self).__init__()
|
|
|
|
|
|
|
|
@abstractmethod
|
2024-08-21 17:57:52 +08:00
|
|
|
def next_best_view(self, seq_feat):
|
2024-08-21 17:11:56 +08:00
|
|
|
pass
|