Trainer + Dataloaders (#27)

Co-authored-by: Laughing-q <1185102784@qq.com>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Glenn Jocher <glenn.jocher@ultralytics.com>
Co-authored-by: Ayush Chaurasia <ayushchaurasia@Ayushs-MacBook-Pro.local>
Co-authored-by: Ayush Chaurasia <ayush.chuararsia@gmail.com>
This commit is contained in:
Ayush Chaurasia 2022-10-10 17:31:07 +05:30 committed by GitHub
parent 7a2e5fdfa3
commit d0b3c9812b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
27 changed files with 2885 additions and 9 deletions

View file

@ -0,0 +1,17 @@
from .general import WorkingDirectory, check_version, download, increment_path, save_yaml
from .torch_utils import LOCAL_RANK, RANK, WORLD_SIZE, DDP_model, select_device, torch_distributed_zero_first
__all__ = [
# general
"increment_path",
"save_yaml",
"WorkingDirectory",
"download",
"check_version",
# torch
"torch_distributed_zero_first",
"LOCAL_RANK",
"RANK",
"WORLD_SIZE",
"DDP_model",
"select_device"]