1. 19 7月, 2021 5 次提交
  2. 18 7月, 2021 2 次提交
    • Glenn Jocher's avatar
      AutoShape PosixPath support (#4047) · 9dd33fd2
      Glenn Jocher 提交于
      * AutoShape PosixPath support
      
      Usage example:
      
      ````python
      from pathlib import Path
      
      model = ...
      file = Path('data/images/zidane.jpg')
      
      results = model(file)
      ```
      
      * Update common.py
      9dd33fd2
    • Glenn Jocher's avatar
      Update README.md (#4041) · dd62e2d0
      Glenn Jocher 提交于
      * Update README.md
      
      * Update README.md
      
      * Update README.md
      dd62e2d0
  3. 17 7月, 2021 2 次提交
  4. 16 7月, 2021 1 次提交
  5. 15 7月, 2021 1 次提交
  6. 14 7月, 2021 2 次提交
  7. 13 7月, 2021 1 次提交
  8. 12 7月, 2021 4 次提交
  9. 11 7月, 2021 3 次提交
  10. 10 7月, 2021 1 次提交
  11. 09 7月, 2021 2 次提交
  12. 08 7月, 2021 3 次提交
  13. 07 7月, 2021 5 次提交
  14. 06 7月, 2021 1 次提交
    • Glenn Jocher's avatar
      YOLOv5 + Albumentations integration (#3882) · 33202b7f
      Glenn Jocher 提交于
      * Albumentations integration
      
      * ToGray p=0.01
      
      * print confirmation
      
      * create instance in dataloader init method
      
      * improved version handling
      
      * transform not defined fix
      
      * assert string update
      
      * create check_version()
      
      * add spaces
      
      * update class comment
      33202b7f
  15. 05 7月, 2021 4 次提交
  16. 04 7月, 2021 3 次提交
    • Glenn Jocher's avatar
      Models `*.yaml` reformat (#3875) · 81b31824
      Glenn Jocher 提交于
      81b31824
    • Glenn Jocher's avatar
      Created using Colaboratory · bd88e7f4
      Glenn Jocher 提交于
      bd88e7f4
    • ketan-b's avatar
      Add multi-stream saving feature (#3864) · 9d86b54e
      ketan-b 提交于
      * Added the recording feature for multiple streams
      
      Thanks for the very cool repo!!
      I was trying to record multiple feeds at the same time, but the current version of the detector only had one video writer and one vid_path!
      So the streams were not being saved and only were initialized with one frame and this process didn't record the whole thing.
      
      Fix:
      I made a list of `vid_writer` and `vid_path` and the `i` from the loop over the `pred` took care of the writer which need to work!
      
      I hope this helps, Thanks!
      
      * Cleanup list lengths
      
      * batch size variable
      
      * Update datasets.py
      Co-authored-by: 's avatarGlenn Jocher <glenn.jocher@ultralytics.com>
      9d86b54e