Skip to content

Commit

Permalink
feat(config/runner): add new configuration files for GPT3 and GPT4
Browse files Browse the repository at this point in the history
  • Loading branch information
entelecheia committed Aug 3, 2023
1 parent 441e063 commit 6d83abc
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 0 deletions.
18 changes: 18 additions & 0 deletions config/runner/corprep-gpt3-sample.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
defaults:
- corprep-gpt3

_config_name_: corprep-gpt3-${.name}
name: sample
top_n: 10
data_load:
path: parquet
data_files: ${get_original_cwd:}/workspace/datasets/filtered/kakao_deduped/${..name}.parquet
split: train

data_save:
dataset_path: ${get_original_cwd:}/workspace/datasets/abas_results/${.._config_name_}

agent:
output_dir: ${get_original_cwd:}/workspace/outputs/predictions/${.._config_name_}
verbose: true
verbose: true
5 changes: 5 additions & 0 deletions config/runner/corprep-gpt3-train.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
defaults:
- corprep-gpt3-sample

name: train
top_n: 10
8 changes: 8 additions & 0 deletions config/runner/corprep-gpt4-sample.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
defaults:
- corprep-gpt3-sample
- override /agent: corprep-gpt4

_config_name_: corprep-gpt4-${.name}
name: sample

top_n: 3
6 changes: 6 additions & 0 deletions config/runner/corprep-gpt4-train.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
defaults:
- corprep-gpt4-sample

name: train

top_n: 10

0 comments on commit 6d83abc

Please sign in to comment.