(path)
| 26 | |
| 27 | @staticmethod |
| 28 | def load_desc(path): |
| 29 | path = get_data_path(path, local_mode=True) |
| 30 | with open(path, 'r', encoding='utf-8') as f: |
| 31 | desc_list = json.load(f) |
| 32 | return desc_list |
| 33 | |
| 34 | @staticmethod |
| 35 | def load_dataset(path, desc_list): |