btizzy's picture
Upload README.md with huggingface_hub
c8ec424 verified
# Example PyTorch Model
This is a demonstration model for testing purposes.
## Usage
```python
import torch
# WARNING: Never load .pt files from untrusted sources without weights_only=True
model = torch.load("model.pt") # Dangerous! Executes arbitrary code
# Safe alternative:
# model = torch.load("model.pt", weights_only=True)
```