Upload files to "/"

This commit is contained in:
benchinnery 2025-09-08 14:11:43 -04:00
parent b772fe9e8b
commit 732aceb5ac

10
example.py Normal file
View File

@ -0,0 +1,10 @@
import torch
import torch.nn as nn
class MyModel(nn.Module):
def __init__(self):
super().__init__()
self.fc = nn.Linear(10, 2)
def forward(self, x):
return self.fc(x)