TinyModel
A small MLP (100 โ 200 โ 10) using ReLU and Softmax, designed as a simple example for publisher workflows.
Intended Uses & Limitations
This model is purely educational and not trained on real-world data. ๐งช It is not suitable for production tasks or any mission-critical usage.
Usage
import torch
from tiny_model import TinyModel
model = TinyModel()
state = torch.load(
"https://huggingface.co/tester-123456789/tiny-model/resolve/main/pytorch_model.bin",
map_location="cpu",
weights_only=True
)
model.load_state_dict(state)
model.eval()
x = torch.randn(1, 100)
y = model(x)
print(y)
- Downloads last month
- 3