7 lines
164 B
Python
7 lines
164 B
Python
from .fully_connected import FullyConnectedModel
|
|
|
|
|
|
class PointOfViewTail(FullyConnectedModel):
|
|
def __init__(self):
|
|
super().__init__(num_out_features=2)
|