Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Single-command multiple-model export #5882

Merged
merged 3 commits into from
Dec 4, 2021
Merged

Single-command multiple-model export #5882

merged 3 commits into from
Dec 4, 2021

Commits on Dec 4, 2021

  1. 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
    ```
    glenn-jocher committed Dec 4, 2021
    Configuration menu
    Copy the full SHA
    1c4473a View commit details
    Browse the repository at this point in the history
  2. Update export.py

    glenn-jocher committed Dec 4, 2021
    Configuration menu
    Copy the full SHA
    46a66f0 View commit details
    Browse the repository at this point in the history
  3. Update README.md

    glenn-jocher committed Dec 4, 2021
    Configuration menu
    Copy the full SHA
    464d3a0 View commit details
    Browse the repository at this point in the history