update template code

This commit is contained in:
phatakmr
2025-10-13 14:48:00 +02:00
parent c9d159fcc6
commit 8f637a4a0d
46 changed files with 2955 additions and 1 deletions

9
mmp/a5/model.py Normal file
View File

@@ -0,0 +1,9 @@
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()