新增代码作者信息;
This commit is contained in:
@@ -1,3 +1,13 @@
|
|||||||
|
"""
|
||||||
|
@file
|
||||||
|
@brief 主程序入口,负责加载配置、处理命令行参数、执行模型评估等
|
||||||
|
@author: Yutang Li
|
||||||
|
@mail: yt.li2@siat.ac.cn
|
||||||
|
@date: 2025-05-28
|
||||||
|
@version: 1.0
|
||||||
|
"""
|
||||||
|
|
||||||
|
|
||||||
import argparse
|
import argparse
|
||||||
import logging
|
import logging
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
|
|||||||
@@ -1,3 +1,12 @@
|
|||||||
|
"""
|
||||||
|
@file
|
||||||
|
@author: Yutang Li
|
||||||
|
@mail: yt.li2@siat.ac.cn
|
||||||
|
@date: 2025-05-28
|
||||||
|
@version: 1.0
|
||||||
|
"""
|
||||||
|
|
||||||
|
|
||||||
from .data_loader import DataLoader
|
from .data_loader import DataLoader
|
||||||
from .llm_client import LLMClient
|
from .llm_client import LLMClient
|
||||||
from .evaluator import Evaluator
|
from .evaluator import Evaluator
|
||||||
|
|||||||
@@ -1,3 +1,12 @@
|
|||||||
|
"""
|
||||||
|
@file
|
||||||
|
@author: Yutang Li
|
||||||
|
@mail: yt.li2@siat.ac.cn
|
||||||
|
@date: 2025-05-28
|
||||||
|
@version: 1.0
|
||||||
|
"""
|
||||||
|
|
||||||
|
|
||||||
import json
|
import json
|
||||||
import logging
|
import logging
|
||||||
from typing import List, Dict, Any
|
from typing import List, Dict, Any
|
||||||
|
|||||||
@@ -1,3 +1,12 @@
|
|||||||
|
"""
|
||||||
|
@file
|
||||||
|
@author: Yutang Li
|
||||||
|
@mail: yt.li2@siat.ac.cn
|
||||||
|
@date: 2025-05-28
|
||||||
|
@version: 1.0
|
||||||
|
"""
|
||||||
|
|
||||||
|
|
||||||
import logging
|
import logging
|
||||||
import concurrent.futures
|
import concurrent.futures
|
||||||
from typing import List, Dict, Any, Tuple
|
from typing import List, Dict, Any, Tuple
|
||||||
|
|||||||
@@ -1,3 +1,12 @@
|
|||||||
|
"""
|
||||||
|
@file
|
||||||
|
@author: Yutang Li
|
||||||
|
@mail: yt.li2@siat.ac.cn
|
||||||
|
@date: 2025-05-28
|
||||||
|
@version: 1.0
|
||||||
|
"""
|
||||||
|
|
||||||
|
|
||||||
import logging
|
import logging
|
||||||
import time
|
import time
|
||||||
from typing import Optional
|
from typing import Optional
|
||||||
|
|||||||
@@ -1,3 +1,12 @@
|
|||||||
|
"""
|
||||||
|
@file
|
||||||
|
@author: Yutang Li
|
||||||
|
@mail: yt.li2@siat.ac.cn
|
||||||
|
@date: 2025-05-28
|
||||||
|
@version: 1.0
|
||||||
|
"""
|
||||||
|
|
||||||
|
|
||||||
import re
|
import re
|
||||||
import numpy as np
|
import numpy as np
|
||||||
from typing import List, Dict, Any, Optional
|
from typing import List, Dict, Any, Optional
|
||||||
|
|||||||
@@ -1,3 +1,12 @@
|
|||||||
|
"""
|
||||||
|
@file
|
||||||
|
@author: Yutang Li
|
||||||
|
@mail: yt.li2@siat.ac.cn
|
||||||
|
@date: 2025-05-28
|
||||||
|
@version: 1.0
|
||||||
|
"""
|
||||||
|
|
||||||
|
|
||||||
import json
|
import json
|
||||||
import yaml
|
import yaml
|
||||||
import logging
|
import logging
|
||||||
|
|||||||
Reference in New Issue
Block a user