Glenn Jocher
9ebec7885f
Update Dockerfile to `git clone` instead of `COPY` ( #7053 )
Resolves git command errors that currently happen in image, i.e.:
```bash
root@382ae64aeca2:/usr/src/app# git pull
Warning: Permanently added the ECDSA host key for IP address '140.82.113.3' to the list of known hosts.
git@github.com: Permission denied (publickey).
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
```
2 years ago
Glenn Jocher
b0ba101ac0
`ComputeLoss()` indexing/speed improvements ( #7048 )
* device as class attribute
* Update loss.py
* Update loss.py
* improve zeros
* tensor split
2 years ago
Mrinal Jain
4effd064b1
Consistent saved_model output format ( #7032 )
2 years ago
Max Strobel
7c6a33564a
fix: add default PIL font as fallback ( #7010 )
* fix: add default font as fallback
Add default font as fallback if the downloading of the Arial.ttf font
fails for some reason, e.g. no access to public internet.
* Update plots.py
Co-authored-by: Maximilian Strobel <Maximilian.Strobel@infineon.com>
Co-authored-by: Glenn Jocher <glenn.jocher@ultralytics.com>
2 years ago
Glenn Jocher
3f634d43c8
Conditional `Timeout()` by OS (disable on Windows) ( #7013 )
* Conditional `Timeout()` by OS (disable on Windows)
* Update general.py
2 years ago
Glenn Jocher
c09fb2aa95
Update TQDM bar format ( #6988 )
2 years ago
Glenn Jocher
932dc78496
YOLOv5 Export Benchmarks for GPU ( #6963 )
* Add benchmarks.py GPU support
* Updates
* Updates
* Updates
* Updates
* Add --half
* Add TRT requirements
* Cleanup
* Add TF to warmup types
* Update export.py
* Update export.py
* Update benchmarks.py
2 years ago
Glenn Jocher
99de551f97
pt model to cpu on TF export
2 years ago
Glenn Jocher
2d45de617e
Model `ema` key backward compatibility fix ( #6972 )
Fix for older model loading issue in d3d9cbce22 (commitcomment-68622388)
2 years ago
paradigm
c13d4ce7ef
EdgeTPU optimizations ( #6808 )
* removed transpose op for better edgetpu support
* fix for training case
* enabled experimental new quantizer flag
* precalculate add and mul ops at compile time
Co-authored-by: Glenn Jocher <glenn.jocher@ultralytics.com>
2 years ago
Glenn Jocher
701e1177ac
Tensor initialization on device improvements ( #6959 )
* Update common.py speed improvements
Eliminate .to() ops where possible for reduced data transfer overhead. Primarily affects warmup and PyTorch Hub inference.
* Updates
* Updates
* Update detect.py
* Update val.py
2 years ago
Glenn Jocher
52c1399fdc
DetectMultiBackend() return `device` update ( #6958 )
Fixes ONNX validation that returns outputs on CPU.
2 years ago
Glenn Jocher
c84dd27d62
New val.py `cuda` variable ( #6957 )
* New val.py `cuda` variable
Fix for ONNX GPU val.
* Update val.py
2 years ago
Glenn Jocher
c6b4f84fd1
Update Dockerfile `torch==1.11.0+cu113` ( #6954 )
2 years ago
Glenn Jocher
b94b59e199
DetectMultiBackend() `--half` handling ( #6945 )
* DetectMultiBackend() `--half` handling
* CI fixes
* rename .half to .fp16 to avoid conflict
* warmup fix
* val update
* engine update
* engine update
2 years ago
Glenn Jocher
84efa62b2d
Fix PyTorch Hub export inference shapes ( #6949 )
May resolve https://github.com/ultralytics/yolov5/issues/6947
2 years ago
Glenn Jocher
caf7ad0500
Allow 3-point segments ( #6938 )
May resolve https://github.com/ultralytics/yolov5/issues/6931
2 years ago
Glenn Jocher
055e72af5b
Optimize PyTorch 1.11.0 compatibility update ( #6933 )
2 years ago
Glenn Jocher
d3d9cbce22
PyTorch 1.11.0 compatibility updates ( #6932 )
Resolves `AttributeError: 'Upsample' object has no attribute 'recompute_scale_factor'` first raised in https://github.com/ultralytics/yolov5/issues/5499
2 years ago
Glenn Jocher
6dd82c0252
Move `git_describe()` to general.py ( #6918 )
* Move `git_describe()` to general.py
* Move `git_describe()` to general.py
2 years ago
Glenn Jocher
e6e36aac10
Update bytes to GB with bitshift ( #6886 )
2 years ago
Glenn Jocher
acc58c1dcf
Fix TRT `max_workspace_size` deprecation notice ( #6856 )
* Fix TRT `max_workspace_size` deprecation notice
* Update export.py
* Update export.py
2 years ago
dependabot[bot]
a5a1760ea6
Bump actions/checkout from 2 to 3 ( #6881 )
Bumps [actions/checkout](https://github.com/actions/checkout ) from 2 to 3.
- [Release notes](https://github.com/actions/checkout/releases )
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md )
- [Commits](https://github.com/actions/checkout/compare/v2...v3 )
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2 years ago
dependabot[bot]
c8a589920e
Bump actions/setup-python from 2 to 3 ( #6880 )
Bumps [actions/setup-python](https://github.com/actions/setup-python ) from 2 to 3.
- [Release notes](https://github.com/actions/setup-python/releases )
- [Commits](https://github.com/actions/setup-python/compare/v2...v3 )
---
updated-dependencies:
- dependency-name: actions/setup-python
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2 years ago
DavidB
596de6d5a0
Default FP16 TensorRT export ( #6798 )
* Assert engine precision #6777
* Default to FP32 inputs for TensorRT engines
* Default to FP16 TensorRT exports #6777
* Remove wrong line #6777
* Automatically adjust detect.py input precision #6777
* Automatically adjust val.py input precision #6777
* Add missing colon
* Cleanup
* Cleanup
* Remove default trt_fp16_input definition
* Experiment
* Reorder detect.py if statement to after half checks
* Update common.py
* Update export.py
* Cleanup
Co-authored-by: Glenn Jocher <glenn.jocher@ultralytics.com>
2 years ago
vnekat
7e98b4801a
Update yolov5s.yaml ( #6865 )
* Update yolov5s.yaml
* Update yolov5s.yaml
Co-authored-by: Glenn Jocher <glenn.jocher@ultralytics.com>
2 years ago
Glenn Jocher
4728840745
Update `--cache disk` deprecate `*_npy/` dirs ( #6876 )
* Updates
* Updates
* Updates
* Updates
* Updates
* Updates
* Updates
* Updates
* Updates
* Updates
* Cleanup
* Cleanup
2 years ago
Glenn Jocher
8a66ebad44
Add `*.ts` to `VID_FORMATS` ( #6859 )
2 years ago
Glenn Jocher
601dbb83f0
AutoAnchor improved initialization robustness ( #6854 )
* Update AutoAnchor
* Update AutoAnchor
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
2 years ago
Louis Combaldieu
bcc92e2169
Update sweep.yaml ( #6825 )
* Update sweep.yaml
Changed focal loss gamma search range between 1 and 4
* Update sweep.yaml
lowered the min value to match default
2 years ago
Glenn Jocher
63ddb6f0d0
Update autoanchor.py ( #6794 )
* Update autoanchor.py
* Update autoanchor.py
2 years ago
Glenn Jocher
c2403eb04c
Update PULL_REQUEST_TEMPLATE.md ( #6783 )
2 years ago
Glenn Jocher
9ec51a6396
YOLOv5s6 params FLOPs fix ( #6782 )
2 years ago
Glenn Jocher
0f819919ad
Update EMA decay `tau` ( #6769 )
* Update EMA
* Update EMA
* ratio invert
* fix ratio invert
* fix2 ratio invert
* warmup iterations to 100
* ema_k
* implement tau
* implement tau
2 years ago
Louis Combaldieu
b2adc7c39a
Fix export for 1-channel images ( #6780 )
Export failed for 1-channel input shape, 1-liner fix
2 years ago
Glenn Jocher
cea994b3f6
Update hyp.VOC.yaml ( #6772 )
2 years ago
Glenn Jocher
741cd0eb23
Update tutorial.ipynb ( #6771 )
2 years ago
Glenn Jocher
c161557563
Default `OMP_NUM_THREADS=8` ( #6770 )
2 years ago
Glenn Jocher
47f265dde2
Update min warmup iterations from 1k to 100 ( #6768 )
2 years ago
Glenn Jocher
4bab56526b
Update tutorial.ipynb (2 CPUs, 12.7 GB RAM, 42.2/166.8 GB disk) ( #6767 )
2 years ago
Glenn Jocher
66aaf5184d
Pre-commit table fix ( #6744 )
2 years ago
Glenn Jocher
3752807c0b
YOLOv5 v6.1 release ( #6739 )
2 years ago
Glenn Jocher
2692e67c5f
Updated VOC hyperparameters ( #6732 )
* Update hyps
* Update hyp.VOC.yaml
* Update pathlib
* Update hyps
* Update hyps
* Update hyps
* Update hyps
2 years ago
Glenn Jocher
a936f5f219
Switch default LR scheduler from cos to linear ( #6729 )
* Switch default LR scheduler from cos to linear
Based on empirical results of training both ways on all YOLOv5 models.
* linear bug fix
2 years ago
Jirka Borovec
dbbb57cf0b
GH: add PR template ( #6482 )
* GH: add PR template
* Update CONTRIBUTING.md
* Update PULL_REQUEST_TEMPLATE.md
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* Update PULL_REQUEST_TEMPLATE.md
* Update PULL_REQUEST_TEMPLATE.md
* Update PULL_REQUEST_TEMPLATE.md
* Update PULL_REQUEST_TEMPLATE.md
Co-authored-by: Glenn Jocher <glenn.jocher@ultralytics.com>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
2 years ago
Glenn Jocher
c43f135571
Update `nw` to `max(nd, 1)` ( #6714 )
2 years ago
Glenn Jocher
4de8b24881
Suppress `torch` AMP-CPU warnings ( #6706 )
This is a torch bug, but they seem unable or unwilling to fix it so I'm creating a suppression in YOLOv5.
Resolves https://github.com/ultralytics/yolov5/issues/6692
2 years ago
Glenn Jocher
de9c25b35e
Use `export_formats()` in export.py ( #6705 )
* Use `export_formats()` in export.py
* list fix
2 years ago
Raffaele Galliera
a297efc383
Edge TPU inference fix ( #6686 )
* refactor: use edgetpu flag
* fix: remove bitwise and assignation to tflite
* Cleanup and fix tflite
* Cleanup
Co-authored-by: Glenn Jocher <glenn.jocher@ultralytics.com>
2 years ago
Samuel Yvon
0365379016
Fix floating point in number of workers `nw` ( #6701 )
Integer division by a float yields a (rounded) float. This causes
the dataloader to crash when creating a range.
2 years ago