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

Making inference thread-safe by avoiding mutable state in Detect class #2120

Merged
merged 45 commits into from
Feb 26, 2021
Merged
Changes from 1 commit
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
03fae98
Avoid mutable state in Detect
Feb 2, 2021
4bdc5a3
LoadImages() pathlib update (#2140)
glenn-jocher Feb 5, 2021
e9b3de4
Unique *.cache filenames fix (#2134)
train255 Feb 5, 2021
86897e3
Update train.py test batch_size (#2148)
glenn-jocher Feb 6, 2021
ad839ed
Update train.py (#2149)
glenn-jocher Feb 6, 2021
6b634c6
Linear LR scheduler option (#2150)
glenn-jocher Feb 6, 2021
a5359f6
Update data-autodownload background tasks (#2154)
glenn-jocher Feb 7, 2021
c32b0af
Update detect.py (#2167)
ab-101 Feb 9, 2021
ace3e02
Update requirements.txt (#2173)
glenn-jocher Feb 10, 2021
c9bda11
Update utils/datasets.py to support .webp files (#2174)
Transigent Feb 10, 2021
a5d5f92
Changed socket port and added timeout (#2176)
NanoCode012 Feb 10, 2021
404749a
PyTorch Hub results.save('path/to/dir') (#2179)
glenn-jocher Feb 11, 2021
bdd88e1
YOLOv5 Segmentation Dataloader Updates (#2188)
glenn-jocher Feb 12, 2021
17ac94b
Created using Colaboratory
glenn-jocher Feb 12, 2021
3e560e2
YOLOv5 PyTorch Hub results.save() method retains filenames (#2194)
dan0nchik Feb 12, 2021
3ff783c
TTA augument boxes one pixel shifted in de-flip ud and lr (#2219)
VdLMV Feb 15, 2021
7b833e3
LoadStreams() frame loss bug fix (#2222)
glenn-jocher Feb 15, 2021
f8464b4
Update yolo.py channel array (#2223)
glenn-jocher Feb 16, 2021
26c2e54
Add check_imshow() (#2231)
glenn-jocher Feb 16, 2021
5a40ce6
Update CI badge (#2230)
glenn-jocher Feb 16, 2021
d2e754b
Add isdocker() (#2232)
glenn-jocher Feb 16, 2021
9d87307
YOLOv5 Hub URL inference bug fix (#2250)
glenn-jocher Feb 19, 2021
db28ce6
Improved hubconf.py CI tests (#2251)
glenn-jocher Feb 19, 2021
5f42643
Unified hub and detect.py box and labels plotting (#2243)
kinoute Feb 19, 2021
47faf95
reset head
glenn-jocher Feb 19, 2021
ab2da5e
Merge remote-tracking branch 'origin/master'
glenn-jocher Feb 19, 2021
c09964c
Update inference default to multi_label=False (#2252)
glenn-jocher Feb 19, 2021
6f5d6fc
Robust objectness loss balancing (#2256)
glenn-jocher Feb 20, 2021
095d2c1
Created using Colaboratory
glenn-jocher Feb 20, 2021
e27ca0d
Update minimum stride to 32 (#2266)
glenn-jocher Feb 22, 2021
95aefea
Dynamic ONNX engine generation (#2208)
aditya-dl Feb 22, 2021
32dd161
Update greetings.yml for auto-rebase on PR (#2272)
glenn-jocher Feb 23, 2021
cc79f3a
Update Dockerfile with apt install zip (#2274)
glenn-jocher Feb 23, 2021
83dc1b4
FLOPS min stride 32 (#2276)
xiaowo1996 Feb 23, 2021
7a6870b
Update README.md
glenn-jocher Feb 23, 2021
d5d275b
Amazon AWS EC2 startup and re-startup scripts (#2185)
glenn-jocher Feb 24, 2021
0070995
Amazon AWS EC2 startup and re-startup scripts (#2282)
glenn-jocher Feb 24, 2021
ca5b10b
Update train.py (#2290)
glenn-jocher Feb 24, 2021
ec1d849
Improved model+EMA checkpointing (#2292)
glenn-jocher Feb 25, 2021
71dd276
Improved model+EMA checkpointing 2 (#2295)
glenn-jocher Feb 25, 2021
a82dce7
Fix labels being missed when image extension appears twice in filenam…
idenc Feb 26, 2021
efa4946
W&B entity support (#2298)
toretak Feb 26, 2021
8304b90
Avoid mutable state in Detect
Feb 2, 2021
558df86
Merge branch 'threadsafe' of https://github.com/olehb/yolov5 into thr…
glenn-jocher Feb 26, 2021
c89d671
Update yolo and remove .to(device)
glenn-jocher Feb 26, 2021
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
Update requirements.txt (#2173)
  • Loading branch information
glenn-jocher committed Feb 10, 2021
commit ace3e02e406307ed0cebc25aebe15835767107b2
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ seaborn>=0.11.0
pandas

# export --------------------------------------
# coremltools==4.0
# onnx>=1.8.0
# coremltools>=4.1
# onnx>=1.8.1
# scikit-learn==0.19.2 # for coreml quantization

# extras --------------------------------------
Expand Down