1. 07 8月, 2022 1 次提交
  2. 06 8月, 2022 7 次提交
    • Glenn Jocher's avatar
      emoji-safe default logging (#8888) · 8f28ea49
      Glenn Jocher 提交于
      * emoji-safe default logging
      
      * implement everywhere
      8f28ea49
    • Glenn Jocher's avatar
      Created using Colaboratory · 73ed7a5e
      Glenn Jocher 提交于
      73ed7a5e
    • Glenn Jocher's avatar
      Created using Colaboratory · d631a690
      Glenn Jocher 提交于
      d631a690
    • Glenn Jocher's avatar
      `smart_optimizer()` improved reporting (#8887) · 20f1b7ea
      Glenn Jocher 提交于
      Update smart_optimizer() weight_decay reporting
      20f1b7ea
    • Glenn Jocher's avatar
      Created using Colaboratory · 030586a3
      Glenn Jocher 提交于
      030586a3
    • Glenn Jocher's avatar
      Created using Colaboratory · 5a0faef3
      Glenn Jocher 提交于
      5a0faef3
    • Victor Sonck's avatar
      ClearML experiment tracking integration (#8620) · 378bde4b
      Victor Sonck 提交于
      * Add titles to matplotlib plots
      
      * Add ClearML Experiment Tracking integration.
      
      * Add ClearML Data Version Management automatic download when requested
      
      * Add ClearML Hyperparameter Optimization
      
      * ClearML save period integration
      
      * Fix wandb breaking when used with ClearML dataset
      
      * Fix wandb breaking when used with ClearML resume and dataset
      
      * Add ClearML documentation
      
      * fixed small bug in clearml integration that misreports epoch number
      
      * Final ClearMl additions before refactor
      
      * Add correct epoch reporting
      
      * Add remote execution and autoscaling docs for ClearML integration
      
      * Added images to clearml integration docs
      
      * fixed logo alignment bug and added hpo screenshot clearml
      
      * Fixed small epoch number bug in clearml integration
      
      * Remove saved model flush clearml
      
      * Cleanup clearml readme section
      
      * Cleaned up clearml logger docstring
      
      * Remove resume readme section clearml
      
      * Clearml integration cleanup
      
      * Updated ClearML documentation
      
      * Added dark vs light icons ClearML Readme
      
      * Clearml Readme styling
      
      * Add better gifs
      
      * Fixed gif file size
      
      * Add better images in tutorial notebook
      
      * [pre-commit.ci] auto fixes from pre-commit.com hooks
      
      for more information, see https://pre-commit.ci
      
      * Addressed comments in PR #8620
      
      * Fixed circular import
      
      * Fixed circular import
      
      * Update tutorial.ipynb
      
      * Update tutorial.ipynb
      
      * Inline comment
      
      * Restructured tutorial notebook
      
      * Add correct ClearML link to README
      
      * Update tutorial.ipynb
      
      * Update general.py
      
      * Update __init__.py
      
      * Update __init__.py
      
      * [pre-commit.ci] auto fixes from pre-commit.com hooks
      
      for more information, see https://pre-commit.ci
      
      * Update __init__.py
      
      * [pre-commit.ci] auto fixes from pre-commit.com hooks
      
      for more information, see https://pre-commit.ci
      
      * Update __init__.py
      
      * Update README.md
      
      * Update __init__.py
      
      * [pre-commit.ci] auto fixes from pre-commit.com hooks
      
      for more information, see https://pre-commit.ci
      
      * spelling
      
      * Update tutorial.ipynb
      
      * notebook cutt.ly links
      
      * Update README.md
      
      * Update README.md
      
      * cutt.ly links in tutorial
      
      * Removed labels as they show up on last subplot only
      Co-authored-by: 's avatarpre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
      Co-authored-by: 's avatarGlenn Jocher <glenn.jocher@ultralytics.com>
      378bde4b
  3. 05 8月, 2022 6 次提交
  4. 04 8月, 2022 4 次提交
  5. 03 8月, 2022 2 次提交
  6. 02 8月, 2022 6 次提交
    • Glenn Jocher's avatar
      New `smart_resume()` (#8838) · 08c8c3e0
      Glenn Jocher 提交于
      * New `smart_resume()`
      
      * Update torch_utils.py
      
      * Update torch_utils.py
      
      * Update torch_utils.py
      
      * fix
      08c8c3e0
    • Jackson Argo's avatar
      Fix missing attr model.model when loading custom yolov model (#8830) · 2e109099
      Jackson Argo 提交于
      * Update hubconf.py
      
      Loading a custom yolov model causes this line to fail. Adding a test to check if the model actually has a model.model field. With this check, I'm able to load the model no prob.
      
      Loading model via
      
      ```py
          model = torch.hub.load(
              'ultralytics/yolov5', 'custom', 'models/frozen_backbone_coco_unlabeled_best.onnx',
              autoshape=True, force_reload=False
          )
      ```
      
      Causes traceback:
      
      ```
      Traceback (most recent call last):
        File "/Users/jackson/Documents/GitHub/w210-capstone/.venv/lib/python3.10/site-packages/flask/app.py", line 2077, in wsgi_app
          response = self.full_dispatch_request()
        File "/Users/jackson/Documents/GitHub/w210-capstone/.venv/lib/python3.10/site-packages/flask/app.py", line 1525, in full_dispatch_request
          rv = self.handle_user_exception(e)
        File "/Users/jackson/Documents/GitHub/w210-capstone/.venv/lib/python3.10/site-packages/flask/app.py", line 1523, in full_dispatch_request
          rv = self.dispatch_request()
        File "/Users/jackson/Documents/GitHub/w210-capstone/.venv/lib/python3.10/site-packages/flask/app.py", line 1509, in dispatch_request
          return self.ensure_sync(self.view_functions[rule.endpoint])(**req.view_args)
        File "/Users/jackson/Documents/GitHub/w210-capstone/api/endpoints/predictions.py", line 26, in post_predictions
          yolov_predictions = predict_bounding_boxes_for_collection(collection_id)
        File "/Users/jackson/Documents/GitHub/w210-capstone/api/predictions/predict_bounding_boxes.py", line 43, in predict_bounding_boxes_for_collection
          model = torch.hub.load(
        File "/Users/jackson/Documents/GitHub/w210-capstone/.venv/lib/python3.10/site-packages/torch/hub.py", line 404, in load
          model = _load_local(repo_or_dir, model, *args, **kwargs)
        File "/Users/jackson/Documents/GitHub/w210-capstone/.venv/lib/python3.10/site-packages/torch/hub.py", line 433, in _load_local
          model = entry(*args, **kwargs)
        File "/Users/jackson/.cache/torch/hub/ultralytics_yolov5_master/hubconf.py", line 72, in custom
          return _create(path, autoshape=autoshape, verbose=_verbose, device=device)
        File "/Users/jackson/.cache/torch/hub/ultralytics_yolov5_master/hubconf.py", line 67, in _create
          raise Exception(s) from e
      Exception: 'DetectMultiBackend' object has no attribute 'model'. Cache may be out of date, try `force_reload=True` or see https://github.com/ultralytics/yolov5/issues/36 for help.
      Exception on /api/v1/predictions [POST]
      Traceback (most recent call last):
        File "/Users/jackson/.cache/torch/hub/ultralytics_yolov5_master/hubconf.py", line 58, in _create
          model.model.model[-1].inplace = False  # Detect.inplace=False for safe multithread inference
        File "/Users/jackson/Documents/GitHub/w210-capstone/.venv/lib/python3.10/site-packages/torch/nn/modules/module.py", line 1185, in __getattr__
          raise AttributeError("'{}' object has no attribute '{}'".format(
      AttributeError: 'DetectMultiBackend' object has no attribute 'model'
      ```
      
      * Update hubconf.py
      
      * Update common.py
      Co-authored-by: 's avatarGlenn Jocher <glenn.jocher@ultralytics.com>
      2e109099
    • pre-commit-ci[bot]'s avatar
      [pre-commit.ci] pre-commit suggestions (#8828) · b7635efb
      pre-commit-ci[bot] 提交于
      updates:
      - [github.com/asottile/pyupgrade: v2.34.0 → v2.37.3](https://github.com/asottile/pyupgrade/compare/v2.34.0...v2.37.3)
      - [github.com/PyCQA/flake8: 4.0.1 → 5.0.2](https://github.com/PyCQA/flake8/compare/4.0.1...5.0.2)
      Co-authored-by: 's avatarpre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
      b7635efb
    • Glenn Jocher's avatar
      RUN git clone instead of COPY to `/usr/src/app` (#8827) · ba140e56
      Glenn Jocher 提交于
      Update
      ba140e56
    • Glenn Jocher's avatar
      Remove hook `torch.nan_to_num(x)` (#8826) · f3c78a38
      Glenn Jocher 提交于
      * Remove hook `torch.nan_to_num(x)`
      
      Observed erratic training behavior (green line) with the nan_to_num hook in classifier branch. I'm going to remove it from master.
      
      * Update train.py
      f3c78a38
    • Glenn Jocher's avatar
      Update README.md with contributors.png (#8820) · 59578f27
      Glenn Jocher 提交于
      * Update README.md with contributors.png
      
      Replace dynamic svg from opencollective with static png for improved stability and lighter size (400kB vs 2MB).
      
      @AyushExel
      
      * Update README.md
      
      * Update README.md
      
      * Update README_cn.md
      
      * [pre-commit.ci] auto fixes from pre-commit.com hooks
      
      for more information, see https://pre-commit.ciCo-authored-by: 's avatarpre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
      59578f27
  7. 01 8月, 2022 8 次提交
  8. 31 7月, 2022 6 次提交