Open ragier opened 2 years ago
@thibo73800 To reproduce, you can launch a train (detr for example) with this modification if you have only one GPU :
Replace : accelerator=None if torch.cuda.device_count() <= 1 else "ddp", by accelerator="ddp",
accelerator=None if torch.cuda.device_count() <= 1 else "ddp",
accelerator="ddp",
It's fixed in the latest version of aloception-oss (v0.5.1). Since v1.8 of lightning, it doesnt accept ddp as value for accelerator anymore. We have strategy for that instead.
aloception-oss
ddp
accelerator
strategy
@thibo73800 To reproduce, you can launch a train (detr for example) with this modification if you have only one GPU :
Replace :
accelerator=None if torch.cuda.device_count() <= 1 else "ddp",
byaccelerator="ddp",