Files
sci-gui-agent-benchmark/tasks/batch_definitions/basic_processing_tasks.json
2026-01-12 18:30:12 +08:00

71 lines
2.8 KiB
JSON
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"description": "基础处理类别任务定义 - 根据教程(1)提取,使用固定参数",
"category": "basic_processing",
"tutorial_source": "Jade使用教程1打开文件 寻峰.pdf",
"parameter_strategy": "fixed_parameters",
"tasks": [
{
"id": "open_file_001",
"category": "basic_processing",
"difficulty": "easy",
"instruction": "请打开桌面上的 DEMO01.MDI 文件。",
"source_file": "DEMO01.MDI",
"output_filename": "open_file_result.txt",
"tutorial_source": "教程(1) - 打开文件部分",
"notes": "打开文件后导出为ASCII文件用于评测",
"evaluation_method": "xrd_data_compare",
"skip_if_exists": false,
"parameters": {
"note": "无参数,仅打开文件并导出"
}
},
{
"id": "smooth_001",
"category": "basic_processing",
"difficulty": "easy",
"instruction": "请打开桌面上的 DEMO01.MDI 文件,进行平滑处理 (Smoothing),平滑点数设置为 5然后将处理后的曲线导出为 ASCII (.txt) 文件并命名为 result.txt。",
"source_file": "DEMO01.MDI",
"output_filename": "result.txt",
"tutorial_source": "教程(1) + 基础处理",
"notes": "重新采集,固定平滑点数=5",
"evaluation_method": "xrd_data_compare",
"skip_if_exists": false,
"parameters": {
"smooth_points": 5,
"note": "固定参数:平滑点数=5"
}
},
{
"id": "background_001",
"category": "basic_processing",
"difficulty": "easy",
"instruction": "请打开桌面上的 DEMO01.MDI 文件,进行背景扣除 (Background Removal),使用自动背景扣除方法,然后将处理后的曲线导出为 ASCII (.txt) 文件并命名为 background_result.txt。",
"source_file": "DEMO01.MDI",
"output_filename": "background_result.txt",
"tutorial_source": "教程(1) + 基础处理知识",
"notes": "使用自动背景扣除方法(固定参数)",
"evaluation_method": "xrd_data_compare",
"skip_if_exists": false,
"parameters": {
"background_method": "auto",
"note": "固定参数:自动背景扣除"
}
},
{
"id": "export_001",
"category": "basic_processing",
"difficulty": "easy",
"instruction": "请打开桌面上的 DEMO01.MDI 文件,将当前曲线导出为 ASCII (.txt) 文件并命名为 export_result.txt。",
"source_file": "DEMO01.MDI",
"output_filename": "export_result.txt",
"tutorial_source": "教程(1) - 导出数据部分",
"notes": "基础导出操作,不进行任何处理",
"evaluation_method": "xrd_data_compare",
"skip_if_exists": false,
"parameters": {
"note": "无参数,仅导出原始数据"
}
}
]
}