Closed nuaalixu closed 1 month ago
Fixes #92
This KeyError occurs because the value of fsdp_config.sharding_strategy is mandatorily converted into a str obj rather than ShardingStrategy obj. This is the intrinsic feature of omegaconf.dictconfig.DictConfig. See this for more details.
fsdp_config.sharding_strategy
str
ShardingStrategy
omegaconf.dictconfig.DictConfig
What does this PR do?
Fixes #92
Feature/Issue validation/testing
This KeyError occurs because the value of
fsdp_config.sharding_strategy
is mandatorily converted into astr
obj rather thanShardingStrategy
obj. This is the intrinsic feature ofomegaconf.dictconfig.DictConfig
. See this for more details.