diff --git a/examples/get_started.md b/examples/get_started.md index b8f9233..aefc34c 100644 --- a/examples/get_started.md +++ b/examples/get_started.md @@ -189,7 +189,7 @@ def _verify_correction(cls, solution, identity: dict) -> bool: ### 7. Configure the JSON file (optional if no data generation is needed) -Create a JSON configuration file consistent with the Bootcamp class name (e.g., `BinaryArithmeticOperationsbootcamp_train.json`) in the `examples/pipelines/puzzle_configs` directory to define the task parameters. Below is an example configuration: +Create two JSON configuration files (for training and testing) in the `examples/pipelines/puzzle_configs` directory, with names matching the Bootcamp class name but without the "bootcamp" suffix (e.g., `BinaryArithmeticOperations_train.json`, `BinaryArithmeticOperations_test.json`), to define the parameters for this task. Below is an example configuration: ```json [ diff --git a/examples/get_started_zh.md b/examples/get_started_zh.md index 3cbc33d..694f244 100644 --- a/examples/get_started_zh.md +++ b/examples/get_started_zh.md @@ -189,7 +189,7 @@ def _verify_correction(cls, solution, identity: dict) -> bool: ### 7. 配置 JSON 文件(可选,若无需生成数据,则不需要实现) -在 `examples/pipelines/puzzle_configs` 目录下创建一个与 Bootcamp 类名一致的 JSON 配置文件(如 `BinaryArithmeticOperationsbootcamp_train.json`),用于定义该任务的参数。以下是一个示例配置: +在 `examples/pipelines/puzzle_configs` 目录下创建两个(train与test)与 Bootcamp 类名一致但去除bootcamp后缀的 JSON 配置文件(如 `BinaryArithmeticOperations_train.json`、`BinaryArithmeticOperations_test.json`),用于定义该任务的参数。以下是一个示例配置: ```json [