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

🎉 Begin CPP integration tutorial #11

Merged
merged 9 commits into from
Feb 16, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
📝 [Readme] Add model converter info
  • Loading branch information
JuInria committed Feb 16, 2022
commit b14c09d69b98c9e996c0628b02f3d8db2b34c605
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -154,8 +154,10 @@ python3 train.py --config=example/hole_detector/cfgs/hole.yaml
```

The trained models and weights will be located at `yolox/ckpts`.
- `mAP-0.XXXX` files represent the full model in Keras format. Those models can be used with `simple_detector.py`.
- `mAP-0.XXXX.h5` files contain only the weight.
- `mAP-0.XXXX` files represent the **full model** in Keras format. Those models can be used with `simple_detector.py`.
- `mAP-0.XXXX.h5` files contain **only** the **weights**.

**Note:** The trained model can be converted into a **frozen graph** or a **ONNX** model thanks to [`model_converter.py`](./tools/model/model_converter.py). For further detail, please use `python3 model_converter.py --help`.

---

Expand Down