Win and linux can run the code

This commit is contained in:
MZ YANG
2026-01-22 17:39:31 +08:00
parent c3f750cd9d
commit f37a8ce179
22 changed files with 32572 additions and 87 deletions

View File

@@ -9,7 +9,7 @@ from typing import Dict, Iterable, List, Optional, Tuple
def load_split(path: str) -> Dict[str, List[str]]:
with open(path, "r", encoding="ascii") as f:
with open(path, "r", encoding="utf-8") as f:
return json.load(f)