Instructions to use mmoz-root/kernelvision with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- ultralytics
How to use mmoz-root/kernelvision with ultralytics:
from ultralytics import YOLOvv8 model = YOLOvv8.from_pretrained("mmoz-root/kernelvision") source = 'http://images.cocodataset.org/val2017/000000039769.jpg' model.predict(source=source, save=True) - TensorRT
How to use mmoz-root/kernelvision with TensorRT:
# No code snippets available yet for this library. # To use this model, check the repository files and the library's documentation. # Want to help? PRs adding snippets are welcome at: # https://github.com/huggingface/huggingface.js
- Notebooks
- Google Colab
- Kaggle
Clarify artifact size units
Browse files
README.md
CHANGED
|
@@ -27,8 +27,8 @@ new set of learned weights.
|
|
| 27 |
|
| 28 |
| File | Graph precision | Input | Raw output | Size |
|
| 29 |
|---|---|---|---|---:|
|
| 30 |
-
| `yolov8n_fp32.onnx` | FP32 | FP32 `[1, 3, 640, 640]` | FP32 `[1, 84, 8400]` | 12.2
|
| 31 |
-
| `yolov8n_mixed_fp16.onnx` | ModelOpt mixed FP16/FP32 | FP16 `[1, 3, 640, 640]` | FP16 `[1, 84, 8400]` | 6.2
|
| 32 |
|
| 33 |
Both graphs use ONNX opset 17 and a static batch size and image shape. The raw
|
| 34 |
output contains pre-NMS box and class predictions; confidence filtering,
|
|
|
|
| 27 |
|
| 28 |
| File | Graph precision | Input | Raw output | Size |
|
| 29 |
|---|---|---|---|---:|
|
| 30 |
+
| `yolov8n_fp32.onnx` | FP32 | FP32 `[1, 3, 640, 640]` | FP32 `[1, 84, 8400]` | 12.2 MiB |
|
| 31 |
+
| `yolov8n_mixed_fp16.onnx` | ModelOpt mixed FP16/FP32 | FP16 `[1, 3, 640, 640]` | FP16 `[1, 84, 8400]` | 6.2 MiB |
|
| 32 |
|
| 33 |
Both graphs use ONNX opset 17 and a static batch size and image shape. The raw
|
| 34 |
output contains pre-NMS box and class predictions; confidence filtering,
|