Instructions to use MidnightRunner/Ultralytics with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- ultralytics
How to use MidnightRunner/Ultralytics with ultralytics:
from ultralytics import YOLOvv8 model = YOLOvv8.from_pretrained("MidnightRunner/Ultralytics") source = 'http://images.cocodataset.org/val2017/000000039769.jpg' model.predict(source=source, save=True) - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -71,7 +71,7 @@ Otherwise, never disable weights_only unless you 100% trust the file.
|
|
| 71 |
|
| 72 |
Check [PyTorch's torch.load docs](https://pytorch.org/docs/stable/generated/torch.load.html) for more info.
|
| 73 |
|
| 74 |
-
**Quick Fix with ~.PT(s) in `ComfyUI/models/`**
|
| 75 |
```bash
|
| 76 |
find ~/ComfyUI/models/ultralytics -type f -name '*.pt' | while read file; do
|
| 77 |
echo "=== Loading: $file ==="
|
|
|
|
| 71 |
|
| 72 |
Check [PyTorch's torch.load docs](https://pytorch.org/docs/stable/generated/torch.load.html) for more info.
|
| 73 |
|
| 74 |
+
**⚠️ Quick Fix with ~.PT(s) in `ComfyUI/models/ultralytics`**
|
| 75 |
```bash
|
| 76 |
find ~/ComfyUI/models/ultralytics -type f -name '*.pt' | while read file; do
|
| 77 |
echo "=== Loading: $file ==="
|