Преглед изворни кода

Simplify callbacks.py return (#7333)

* Simplify callbacks.py return

* Indent args (pytorch convention)

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
modifyDataloader
Glenn Jocher GitHub пре 2 година
родитељ
комит
676e10cf1a
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 измењених фајлова са 8 додато и 11 уклоњено
  1. +8
    -11
      utils/callbacks.py

+ 8
- 11
utils/callbacks.py Прегледај датотеку

@@ -38,9 +38,9 @@ class Callbacks:
Register a new action to a callback hook

Args:
hook The callback hook name to register the action to
name The name of the action for later reference
callback The callback to fire
hook: The callback hook name to register the action to
name: The name of the action for later reference
callback: The callback to fire
"""
assert hook in self._callbacks, f"hook '{hook}' not found in callbacks {self._callbacks}"
assert callable(callback), f"callback '{callback}' is not callable"
@@ -51,21 +51,18 @@ class Callbacks:
Returns all the registered actions by callback hook

Args:
hook The name of the hook to check, defaults to all
hook: The name of the hook to check, defaults to all
"""
if hook:
return self._callbacks[hook]
else:
return self._callbacks
return self._callbacks[hook] if hook else self._callbacks

def run(self, hook, *args, **kwargs):
"""
Loop through the registered actions and fire all callbacks

Args:
hook The name of the hook to check, defaults to all
args Arguments to receive from YOLOv5
kwargs Keyword Arguments to receive from YOLOv5
hook: The name of the hook to check, defaults to all
args: Arguments to receive from YOLOv5
kwargs: Keyword Arguments to receive from YOLOv5
"""

assert hook in self._callbacks, f"hook '{hook}' not found in callbacks {self._callbacks}"

Loading…
Откажи
Сачувај