Skip to content

Commit ad362c1

Browse files
author
henrique
committed
update README
1 parent ba30177 commit ad362c1

4 files changed

Lines changed: 2 additions & 11 deletions

File tree

README.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -282,15 +282,13 @@ codeevolve \
282282
--cfg_path=CFG_PATH \
283283
--out_dir=RESULTS_DIR \
284284
--load_ckpt=LOAD_CKPT \
285-
--terminal_logging
286285
```
287286

288287
**Arguments:**
289288
- `--inpt_dir`: Directory containing the evaluation script and the initial codebase
290289
- `--cfg_path`: Path to YAML configuration file (required for new runs)
291290
- `--out_dir`: Directory where results will be saved
292291
- `--load_ckpt`: Checkpoint to load (0 for new run, -1 for latest, or specific epoch)
293-
- `--terminal_logging`: Enable live progress display (optional)
294292

295293
The `scripts/run.sh` provides a bash script for running CodeEvolve with `taskset` to limit CPU usage. See `src/codeevolve/cli.py` for further details.
296294

@@ -397,7 +395,6 @@ codeevolve \
397395
--inpt_dir=my_problem/input \
398396
--cfg_path=my_problem/config.yaml \
399397
--out_dir=my_problem/results \
400-
--terminal_logging
401398
```
402399

403400
### Customizing for Your Problem
@@ -556,7 +553,6 @@ Required:
556553
Optional:
557554
--cfg_path PATH Config file (required for new runs)
558555
--load_ckpt INT Checkpoint: 0=new, -1=latest, N=epoch N
559-
--terminal_logging Show live progress in terminal
560556
```
561557
562558
### Output Structure

scripts/run.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,4 @@ taskset --cpu-list $CPU_LIST codeevolve \
2323
--inpt_dir=$INPT_DIR \
2424
--cfg_path=$CFG_PATH \
2525
--out_dir=$OUT_DIR \
26-
--load_ckpt=$LOAD_CKPT \
27-
--terminal_logging
26+
--load_ckpt=$LOAD_CKPT

scripts/run_mock.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,4 @@ taskset --cpu-list $CPU_LIST codeevolve \
2626
--inpt_dir=$INPT_DIR \
2727
--cfg_path=$CFG_PATH \
2828
--out_dir=$OUT_DIR \
29-
--load_ckpt=$LOAD_CKPT \
30-
--terminal_logging
29+
--load_ckpt=$LOAD_CKPT

src/codeevolve/runner.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -216,9 +216,6 @@ def start_log_daemon(
216216
Returns:
217217
The log daemon process if started, None otherwise.
218218
"""
219-
if not args.get("terminal_logging", False):
220-
return None
221-
222219
log_daemon: mp.Process = mp.Process(
223220
target=cli_dashboard,
224221
args=(args, global_data, global_data.log_queue, num_islands),

0 commit comments

Comments
 (0)