Views
No views yet
| Format | File | Size |
|---|---|---|
| PyTorch | pytorch/loki_v1.pth | 792MB |
| SafeTensors | pytorch/loki_v1.safetensors | 426MB |
| Text embeddings | pytorch/text_embeddings.pt | 83KB |
| Checkpoint (resume) | checkpoints/best.pth | 792MB |
| Training config | configs/training.toml | — |
| Training history | logs/training_history.json | — |
1# Requires HDINO repo: https://github.com/HaoZ416/HDINO
2from safetensors.torch import load_file
3weights = load_file("pytorch/loki_v1.safetensors")
4model.load_state_dict(weights, strict=False)