Thank you! We'll be in touch ASAP.
Something went wrong, please try again or contact us directly at contact@dagshub.com
Ultralytics:main
ultralytics:docs/yoloe-export-docs
# Ultralytics ๐ AGPL-3.0 License - https://ultralytics.com/license # Export-optimized derivative of ultralytics/ultralytics:latest for testing and benchmarks # Includes all export format dependencies and pre-installed export packages FROM ultralytics/ultralytics:latest # Install export dependencies and run exports to AutoInstall packages # Numpy 1.26.4 required due to TF export bug with torch 2.8 RUN uv pip install --system -e ".[export]" "onnxruntime-gpu" tensorrt paddlepaddle x2paddle numpy==1.26.4 && \ # Run exports to AutoInstall packages \ yolo export model=yolo11n.pt format=edgetpu imgsz=32 && \ yolo export model=yolo11n.pt format=ncnn imgsz=32 && \ # Remove temporary files \ rm -rf tmp /root/.config/Ultralytics/persistent_cache.json
Press p or to see the previous file or, n or to see the next file