ValueError: You selected an invalid strategy name: `strategy=None`. It must be either a string or an instance of `pytorch_lightning.strategies.Strategy`. Example choices: auto, ddp, ddp_spawn, deepspeed, ... Find a complete list of options in our documentation at https://lightning.ai
时间: 2023-06-16 19:05:42 浏览: 400
python3.7解决最小二乘遇到ValueError:Expected 2D array, got 1D array instead: array=[5.].关于reshape和predict
这个错误提示意味着你在使用 PyTorch Lightning 框架时选择了一个无效的分布式训练策略名称。您需要选择一个有效的策略名称或将其设置为 `None` 以使用默认的策略。有效的策略名称包括 `auto`、`ddp`、`ddp_spawn`、`deepspeed` 等。您可以在 PyTorch Lightning 文档中找到完整的选项列表,以了解每种策略的用途和限制。
阅读全文