1. 30 4月, 2021 2 次提交
  2. 29 4月, 2021 1 次提交
  3. 28 4月, 2021 2 次提交
  4. 27 4月, 2021 3 次提交
    • Glenn Jocher's avatar
      Add yolov5/ to sys.path() for *.py subdir exec (#2949) · 4200674a
      Glenn Jocher 提交于
      * Add yolov5/ to sys.path() for *.py subdir exec
      
      * Update export.py
      4200674a
    • Glenn Jocher's avatar
      Improved yolo.py profiling (#2940) · 48904993
      Glenn Jocher 提交于
      * Improved yolo.py profiling
      
      Improved column order and labelling.
      
      * Update yolo.py
      48904993
    • BZFYS's avatar
      Update README.md (#2934) · 6c1290fe
      BZFYS 提交于
      * Update README.md
      
      dependencies:
      ImportError: libGL.so.1: cannot open shared object file: No such file or directory
      ImportError: libgthread-2.0.so.0: cannot open shared object file: No such file or directory
      ImportError: libSM.so.6: cannot open shared object file: No such file or directory
      ImportError: libXrender.so.1: cannot open shared object file: No such file or directory
      
      * replace older apt-get with apt
      
      Code commented for now until a better understanding of the issue, and also code is not cross-platform compatible.
      Co-authored-by: 's avatarGlenn Jocher <glenn.jocher@ultralytics.com>
      6c1290fe
  5. 26 4月, 2021 4 次提交
  6. 25 4月, 2021 2 次提交
  7. 24 4月, 2021 7 次提交
  8. 23 4月, 2021 3 次提交
  9. 22 4月, 2021 4 次提交
  10. 21 4月, 2021 4 次提交
  11. 20 4月, 2021 1 次提交
  12. 18 4月, 2021 3 次提交
    • Glenn Jocher's avatar
      Update FUNDING.yml (#2833) · 238583b7
      Glenn Jocher 提交于
      * Update FUNDING.yml
      
      * move FUNDING.yml to ./github
      238583b7
    • Glenn Jocher's avatar
      Create FUNDING.yml (#2832) · 803f51bc
      Glenn Jocher 提交于
      803f51bc
    • Glenn Jocher's avatar
      PyTorch Hub cv2 .save() .show() bug fix (#2831) · c15e25c4
      Glenn Jocher 提交于
      * PyTorch Hub cv2 .save() .show() bug fix
      
      cv2.rectangle() was failing on non-contiguous np array inputs. This checks for contiguous arrays and applies is necessary:
      ```python
      imgs[i] = im if im.data.contiguous else np.ascontiguousarray(im)  # update
      ```
      
      * Update plots.py
      
      ```python
      assert im.data.contiguous, 'Image not contiguous. Apply np.ascontiguousarray(im) to plot_on_box() input image.'
      ```
      
      * Update hubconf.py
      
      Expand CI tests to OpenCV image.
      c15e25c4
  13. 16 4月, 2021 2 次提交
    • Glenn Jocher's avatar
      YouTube Bug Fix (#2818) · aff03be3
      Glenn Jocher 提交于
      Fix for #2810
      ```shell
      python detect.py --source 0
      ```
      introduced by YouTube Livestream Detection PR #2752
      aff03be3
    • Glenn Jocher's avatar
      ONNX Simplifier (#2815) · 1f3e482b
      Glenn Jocher 提交于
      * ONNX Simplifier
      
      Add ONNX Simplifier to ONNX export pipeline in export.py. Will auto-install onnx-simplifier if onnx is installed but onnx-simplifier is not.
      
      * Update general.py
      1f3e482b
  14. 15 4月, 2021 2 次提交