Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
SpotLab
/
YOLOv8Detection
like
0
Follow
SpotLab S.L.
7
Object Detection
Transformers
LiteRT
yolov8
vision
License:
openrail
Model card
Files
Files and versions
Community
Train
Deploy
Use this model
a9623eb
YOLOv8Detection
/
scripts
/
yolo_export.py
Jaime García Villena
Revert "Export with nms"
a9623eb
over 1 year ago
raw
Copy download link
history
blame
Safe
178 Bytes
from
ultralytics
import
YOLO
if
__name__ ==
'__main__'
:
model = YOLO(
'yolov8n.pt'
)
model.export(
format
=
'saved_model'
, keras =
True
)
model.export(
format
=
'tflite'
)