Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
kmjtspxr
/
minjin
like
0
Object Detection
ONNX
yolov8
Model card
Files
Files and versions
Community
main
minjin
/
transform.py
mjxxkxx
14:22
d1de587
4 months ago
raw
Copy download link
history
blame
contribute
delete
Safe
157 Bytes
from
ultralytics
import
YOLO
# 모델 로드
model = YOLO(
'best.pt'
)
# ONNX로 직접 내보내기
model.export(
format
=
'onnx'
, simplify=
True
, dynamic=
True
)