1. 18 9月, 2022 10 次提交
  2. 17 9月, 2022 5 次提交
  3. 16 9月, 2022 10 次提交
  4. 14 9月, 2022 1 次提交
  5. 11 9月, 2022 4 次提交
  6. 10 9月, 2022 6 次提交
  7. 09 9月, 2022 1 次提交
  8. 08 9月, 2022 1 次提交
    • Dhruv Nair's avatar
      Comet changes (#9328) · 5f075eed
      Dhruv Nair 提交于
      * add link to comte tutorial from  main README
      
      * fix prediction interval bug
      5f075eed
  9. 07 9月, 2022 2 次提交
    • Dhruv Nair's avatar
      Comet Logging and Visualization Integration (#9232) · 903b239f
      Dhruv Nair 提交于
      * add comet to logger interface
      
      * add comet logger
      
      * add support for updated parameters
      
      * clean up offline logger creation
      
      * update callback args for comet logger
      
      * add comet optimizer
      
      * add optimizer config
      
      * add comet README
      
      * update tutorial notebook with Comet section
      
      * add option to log class level metrics
      
      * add support for class level metrics and confusion matrix
      
      * handle errors when adding files to artifacts
      
      * fix typo
      
      * clean resume workflow
      
      * updates for HPO
      
      * update comet README
      
      * fix typo in comet README
      
      * update code snippets in comet README
      
      * update comet links in tutorial
      
      * updated links
      
      * change optimizer batch size param and update comet README image
      
      * update comet section in tutorial
      
      * use prexisting cmd line flags to configure logger
      
      * update artifact upload/download flow
      
      * remove come remove comet logger specific cmd line args
      
      * move downloading weights into comet logger code
      
      * remove extra argparse
      
      * [pre-commit.ci] auto fixes from pre-commit.com hooks
      
      for more information, see https://pre-commit.ci
      
      * change checkpoint logging flow to follow offline logger
      
      * update resume flow
      
      * add comet logger to remote dataset property
      
      * update cmd line args in hpo
      
      * set types for integer/float env variables
      
      * update README
      
      * fix typo in README
      
      * default to always logging model predictions
      
      * Update tutorial.ipynb
      
      * Update train.py
      
      * Add Comet to Integrations table
      
      * Update README.md
      
      * [pre-commit.ci] auto fixes from pre-commit.com hooks
      
      for more information, see https://pre-commit.ciCo-authored-by: 's avatarAyush Chaurasia <ayush.chaurarsia@gmail.com>
      Co-authored-by: 's avatarGlenn Jocher <glenn.jocher@ultralytics.com>
      Co-authored-by: 's avatarpre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
      903b239f
    • Glenn Jocher's avatar
      Replace deprecated `np.int` with `int` (#9307) · 5a134e06
      Glenn Jocher 提交于
      Per 
      ```
      /content/yolov5/utils/dataloaders.py:458: DeprecationWarning: `np.int` is a deprecated alias for the builtin `int`. To silence this warning, use `int` by itself. Doing this will not modify any behavior and is safe. When replacing `np.int`, you may wish to use e.g. `np.int64` or `np.int32` to specify the precision. If you wish to review your current use, check the release note link for additional information.
      Deprecated in NumPy 1.20; for more details and guidance: https://numpy.org/devdocs/release/1.20.0-notes.html#deprecations
      ```
      Signed-off-by: 's avatarGlenn Jocher <glenn.jocher@ultralytics.com>
      Signed-off-by: 's avatarGlenn Jocher <glenn.jocher@ultralytics.com>
      5a134e06