7 lines
169 B
Python
7 lines
169 B
Python
from .fully_connected import FullyConnectedModel
|
|
|
|
|
|
class InformationValueTail(FullyConnectedModel):
|
|
def __init__(self):
|
|
super().__init__(num_out_features=3)
|