1. 12 4月, 2021 2 次提交
  2. 11 4月, 2021 3 次提交
  3. 10 4月, 2021 1 次提交
  4. 09 4月, 2021 1 次提交
  5. 07 4月, 2021 1 次提交
    • Glenn Jocher's avatar
      Add Hub results.pandas() method (#2725) · c03d5903
      Glenn Jocher 提交于
      * Add Hub results.pandas() method
      
      New method converts results from torch tensors to pandas DataFrames with column names.
      
      This PR may partially resolve issue https://github.com/ultralytics/yolov5/issues/2703
      
      ```python
      results = model(imgs)
      
      print(results.pandas().xyxy[0])
               xmin        ymin        xmax        ymax  confidence  class    name
      0   57.068970  391.770599  241.383545  905.797852    0.868964      0  person
      1  667.661255  399.303589  810.000000  881.396667    0.851888      0  person
      2  222.878387  414.774231  343.804474  857.825073    0.838376      0  person
      3    4.205386  234.447678  803.739136  750.023376    0.658006      5     bus
      4    0.000000  550.596008   76.681190  878.669922    0.450596      0  person
      ```
      
      * Update comments 
      
      torch example input now shown resized to size=640 and also now a multiple of P6 stride 64 (see https://github.com/ultralytics/yolov5/issues/2722#issuecomment-814785930)
      
      * apply decorators
      
      * PEP8
      
      * Update common.py
      
      * pd.options.display.max_columns = 10
      
      * Update common.py
      c03d5903
  6. 06 4月, 2021 4 次提交
  7. 02 4月, 2021 4 次提交
  8. 01 4月, 2021 4 次提交
  9. 31 3月, 2021 2 次提交
  10. 30 3月, 2021 1 次提交
  11. 29 3月, 2021 6 次提交
  12. 28 3月, 2021 7 次提交
  13. 27 3月, 2021 2 次提交
  14. 26 3月, 2021 2 次提交
    • Glenn Jocher's avatar
      Update detections() self.t = tuple() (#2617) · a57f23d1
      Glenn Jocher 提交于
      * Update detections() self.t = tuple()
      
      Fix multiple results.print() bug.
      
      * Update experimental.py
      
      * Update yolo.py
      a57f23d1
    • Glenn Jocher's avatar
      Create date_modified() (#2616) · 0ff5aeca
      Glenn Jocher 提交于
      Updated device selection string with fallback for non-git directories.
      ```python
      def select_device(device='', batch_size=None):
          # device = 'cpu' or '0' or '0,1,2,3'
          s = f'YOLOv5 🚀 {git_describe() or date_modified()} torch {torch.__version__} '  # string
      ...
      ```
      0ff5aeca