From c0ce368bfdb75828e2ccda076fdd974a96e4a5a5 Mon Sep 17 00:00:00 2001 From: "Ethan, Wenjun Hou" Date: Tue, 14 Nov 2023 21:59:35 +0800 Subject: [PATCH] Update README.md --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index ea2d5b7..1457658 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ python ./src/plan_extraction.py ``` ## Step 1: Observation Planning -There are two parameters required to run the code of planner: +There are two parameters required to run the code of the planner: - `debug: whether debugging the code (0 for debugging and 1 for running)` - `checkpoint_name: indicating the location for the pre-trained visual model, mainly for IU Xray dataset`. ``` @@ -40,10 +40,10 @@ chmod +x ./script_plan/run_iu_xray.sh ``` ## Step 2: Observation-guided Report Generation -There are four parameters required to run the code of generator: +There are four parameters required to run the code of the generator: - `debug: whether debugging the code (0 for debugging and 1 for running)` -- `checkpoint_name: indicating the location for the pre-trained visual model, mainly for IU-Xray dataset, same as the setting of the planner` -- `plan_model_name_or_path: indicating the location of trained planner (from Step 1)` +- `checkpoint_name: indicating the location for the pre-trained visual model, mainly for the IU-Xray dataset, same as the setting of the planner` +- `plan_model_name_or_path: indicating the location of the trained planner (from Step 1)` - `plan_eval_file: indicating the file name of generated plans for the validation set (from Step 1)` ```