Files
mmp_wise2526_franksim/mmp/a5/model.py

10 lines
240 B
Python
Raw Normal View History

2025-10-13 14:48:00 +02:00
import torch
class MmpNet(torch.nn.Module):
def __init__(self, num_widths: int, num_aspect_ratios: int):
raise NotImplementedError()
def forward(self, x: torch.Tensor) -> torch.Tensor:
raise NotImplementedError()