1. 25 4月, 2021 1 次提交
  2. 24 4月, 2021 7 次提交
  3. 23 4月, 2021 3 次提交
  4. 22 4月, 2021 4 次提交
  5. 21 4月, 2021 4 次提交
  6. 20 4月, 2021 1 次提交
  7. 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
  8. 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
  9. 15 4月, 2021 2 次提交
  10. 12 4月, 2021 9 次提交
  11. 11 4月, 2021 3 次提交
  12. 10 4月, 2021 1 次提交