(yaml_file, other_part=None)
| 129 | |
| 130 | |
| 131 | def load_yaml(yaml_file, other_part=None): |
| 132 | part_list = ["workspace", "runner", "hyper_parameters"] |
| 133 | if other_part: |
| 134 | part_list += other_part |
| 135 | running_config = get_all_inters_from_yaml(yaml_file, part_list) |
| 136 | return running_config |
| 137 | |
| 138 | |
| 139 | def reset_auc(use_fleet=False, auc_num=1): |
no test coverage detected