(model, config_name)
| 18 | |
| 19 | |
| 20 | def file_or_path_exists(model, config_name): |
| 21 | if (local_path := Path(model)).exists(): |
| 22 | return (local_path / config_name).is_file() |
| 23 | |
| 24 | return False |
| 25 | |
| 26 | |
| 27 | def get_pooling_config_name(pooling_name: str): |
no test coverage detected