• Glenn Jocher's avatar
    Single-command multiple-model export (#5882) · 1075488d
    Glenn Jocher 提交于
    * Export multiple models in series
    
    Export multiple models in series by adding additional `*.pt` files to the `--weights` argument, i.e.:
    
    ```bash
    python export.py --include tflite --weights yolov5n.pt  # export 1 model
    python export.py --include tflite --weights yolov5n.pt yolov5s.pt yolov5m.pt yolov5l.pt yolov5x.pt  # export 5 models
    ```
    
    * Update export.py
    
    * Update README.md
    1075488d
export.py 19.8 KB