(model_cfg: ConfigDict)
| 180 | |
| 181 | |
| 182 | def parse_model_cfg(model_cfg: ConfigDict) -> Dict[str, ConfigDict]: |
| 183 | model2cfg = {} |
| 184 | for model in model_cfg: |
| 185 | model2cfg[model_abbr_from_cfg(model)] = model |
| 186 | return model2cfg |
| 187 | |
| 188 | |
| 189 | def main(): |
no test coverage detected