This repository was archived by the owner on Jun 4, 2025. It is now read-only.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Update Neuralmagic-YoloV5 integration to v6.1 #29
Uh oh!
There was an error while loading. Please reload this page.
Update Neuralmagic-YoloV5 integration to v6.1 #29
Changes from 1 commit
a4207a2bc48457e8f8f2b1679aac30db14f00e308f92a7391360eec6d8857997bf04d91075488fa05f8c3f152e5554f782581dc307d56d45a3d5f1dc77a5a85bdb28e4fb6dd4c45f9f6922fbd8a42af302c631758f875d98f3543619c56e6e8ef8fb2d0c6afd699c21c9a46a6b7d18f3da9a1b7628817dc1249a4407a905361705dabbdd4826f04150db9d5bb8a4babdc54ed595c7bc2afa5cfbc72270cdb6ec669155eb87b6938daffa284d95978ae1dc894ec4b6dd968e3005344e54b4a29b563a4d867cad6595bd6a97fb83929a2f4a177b31a53b5b56a39e9219f54027538125ec500d7b97b4ac3dff80c463ad565e333a67b46865d199b13a59b3eaf50f3085ac80473a6af00134e7bf382a1a9c68436ffc4db1f83b3119b2ffd55271e2e95b20cf932be521909750c42e9708cf54e841b9e1893c89bcc32a1b41a1dbd815d4c43439a8efe977482af47cfecd90ed9bac816563acff8646cd5966c93b7ac28fe7de6a856d4e5d8b5beb7539cd76445a81b884ea35e4ff1977977e0842d0494c40933b73c62e19e0208cb40c9ac3e599ca82292e8d057169bc72a3079b36d8fcdf3baff0281e1a6a0bcba4303dc7e093b57abb1006eb4022da63ef627bc5f40854b9c513ca9cf80b7364b7c5a5c9057c21da59cb2ad9fb40bdd63eef80451f775096d8f86a45e4725389300ca0a007ee6c70a67690211ff43707b805452e5c67e9a8ebe6bb054d509d263b254562818b508107221f166e5d793670d9156697c40365379a297efcde9c25b4de8b24c43f135dbbb57ca936f5f2692e67375280766aaf514bab56547f265dc161557741cd0ecea994bb2adc7c0f819919ec51a6c2403eb63ddb6fbcc92e2601dbb88a66eba47288407e98b48596de6dc8a5899a5a1760acc58c1e6e36aa6dd82c0d3d9cbc055e72acaf7ad084efa62b94b59ec6b4f84c84dd2752c1399701e117c13d4ce2d45de699de551932dc78c09fb2a3f634d47c6a3354effd06b0ba1019ebec786843ea59f4d113529fbc1f327eeed5e363f0529b77e278fd69e75cbf178c1099cd89b79b771a36f12803a2d617ea600bae05aae17ee0b3b26134ec5ecc2c7bc3ae4e4bc3ed95a0a4adf8eaecd21f735524db2a1570fb4cdbf225ec4b4b9326d3667a28579c8e5999d53218a78bbbcf6b140ee49912040ca8dfa0f7bdf2e620f6f915eadf3a011e7dfa32b970ddd585170aef0bdd1ad414d686e5File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
* Add models/tf.py for TensorFlow and TFLite export * Set auto=False for int8 calibration * Update requirements.txt for TensorFlow and TFLite export * Read anchors directly from PyTorch weights * Add --tf-nms to append NMS in TensorFlow SavedModel and GraphDef export * Remove check_anchor_order, check_file, set_logging from import * Reformat code and optimize imports * Autodownload model and check cfg * update --source path, img-size to 320, single output * Adjust representative_dataset * Put representative dataset in tfl_int8 block * detect.py TF inference * weights to string * weights to string * cleanup tf.py * Add --dynamic-batch-size * Add xywh normalization to reduce calibration error * Update requirements.txt TensorFlow 2.3.1 -> 2.4.0 to avoid int8 quantization error * Fix imports Move C3 from models.experimental to models.common * Add models/tf.py for TensorFlow and TFLite export * Set auto=False for int8 calibration * Update requirements.txt for TensorFlow and TFLite export * Read anchors directly from PyTorch weights * Add --tf-nms to append NMS in TensorFlow SavedModel and GraphDef export * Remove check_anchor_order, check_file, set_logging from import * Reformat code and optimize imports * Autodownload model and check cfg * update --source path, img-size to 320, single output * Adjust representative_dataset * detect.py TF inference * Put representative dataset in tfl_int8 block * weights to string * weights to string * cleanup tf.py * Add --dynamic-batch-size * Add xywh normalization to reduce calibration error * Update requirements.txt TensorFlow 2.3.1 -> 2.4.0 to avoid int8 quantization error * Fix imports Move C3 from models.experimental to models.common * implement C3() and SiLU() * Add TensorFlow and TFLite Detection * Add --tfl-detect for TFLite Detection * Add int8 quantized TFLite inference in detect.py * Add --edgetpu for Edge TPU detection * Fix --img-size to add rectangle TensorFlow and TFLite input * Add --no-tf-nms to detect objects using models combined with TensorFlow NMS * Fix --img-size list type input * Update README.md * Add Android project for TFLite inference * Upgrade TensorFlow v2.3.1 -> v2.4.0 * Disable normalization of xywh * Rewrite names init in detect.py * Change input resolution 640 -> 320 on Android * Disable NNAPI * Update README.me --img 640 -> 320 * Update README.me for Edge TPU * Update README.md * Fix reshape dim to support dynamic batching * Fix reshape dim to support dynamic batching * Add epsilon argument in tf_BN, which is different between TF and PT * Set stride to None if not using PyTorch, and do not warmup without PyTorch * Add list support in check_img_size() * Add list input support in detect.py * sys.path.append('./') to run from yolov5/ * Add int8 quantization support for TensorFlow 2.5 * Add get_coco128.sh * Remove --no-tfl-detect in models/tf.py (Use tf-android-tfl-detect branch for EdgeTPU) * Update requirements.txt * Replace torch.load() with attempt_load() * Update requirements.txt * Add --tf-raw-resize to set half_pixel_centers=False * Remove android directory * Update README.md * Update README.md * Add multiple OS support for EdgeTPU detection * Fix export and detect * Export 3 YOLO heads with Edge TPU models * Remove xywh denormalization with Edge TPU models in detect.py * Fix saved_model and pb detect error * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Fix pre-commit.ci failure * Add edgetpu in export.py docstring * Fix Edge TPU model detection exported by TF 2.7 * Add class names for TF/TFLite in DetectMultibackend * Fix assignment with nl in TFLite Detection * Add check when getting Edge TPU compiler version * Add UTF-8 encoding in opening --data file for Windows * Remove redundant TensorFlow import * Add Edge TPU in export.py's docstring * Add the detect layer in Edge TPU model conversion * Default `dnn=False` * Cleanup data.yaml loading * Update detect.py * Update val.py * Comments and generalize data.yaml names Co-authored-by: Glenn Jocher <[email protected]> Co-authored-by: unknown <[email protected]> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>Uh oh!
There was an error while loading. Please reload this page.
There are no files selected for viewing