Explorar el Código

Add torch DP warning (#3698)

modifyDataloader
Glenn Jocher GitHub hace 3 años
padre
commit
c1af67dcd4
No se encontró ninguna clave conocida en la base de datos para esta firma ID de clave GPG: 4AEE18F83AFDEB23
Se han modificado 1 ficheros con 2 adiciones y 0 borrados
  1. +2
    -0
      train.py

+ 2
- 0
train.py Ver fichero

@@ -198,6 +198,8 @@ def train(hyp, # path/to/hyp.yaml or hyp dictionary

# DP mode
if cuda and RANK == -1 and torch.cuda.device_count() > 1:
logging.warning('DP not recommended, instead use torch.distributed.run for best DDP Multi-GPU results.\n'
'See Multi-GPU Tutorial at https://github.com/ultralytics/yolov5/issues/475 to get started.')
model = torch.nn.DataParallel(model)

# SyncBatchNorm

Cargando…
Cancelar
Guardar