Skip to content

Commit df2de46

Browse files
committed
stop overwriting the config for dataset generation
1 parent cc7cc84 commit df2de46

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

llm-finetuning/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@ The three pipelines can be run using the CLI:
6969

7070
```shell
7171
# Data generation
72-
python run.py --feature-engineering --config <NAME_OF_CONFIG_IN_CONFIGS_FOLDER>
73-
python run.py --feature-engineering --config generate_code_dataset.yaml
72+
python run.py --feature-pipeline --config <NAME_OF_CONFIG_IN_CONFIGS_FOLDER>
73+
python run.py --feature-pipeline --config generate_code_dataset.yaml
7474

7575
# Training
7676
python run.py --training-pipeline --config <NAME_OF_CONFIG_IN_CONFIGS_FOLDER>

llm-finetuning/run.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,9 +124,7 @@ def main(
124124

125125
# Execute Feature Engineering Pipeline
126126
if feature_pipeline:
127-
pipeline_args = {}
128127
from pipelines import generate_code_dataset
129-
130128
generate_code_dataset.with_options(**pipeline_args)()
131129
logger.info("Feature Engineering pipeline finished successfully!\n")
132130

0 commit comments

Comments
 (0)