Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,5 @@ download*
*.eps
data_generated/raw_responses/
build/
lora_outputs/
lora_outputs/
availability_plots/
4 changes: 4 additions & 0 deletions control/api_prompt_experiment.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,10 @@ def _generate_likert_control_prompt(self, level: int) -> str:
'confirmation': {
'max_description': 'always seek only information that confirms your existing beliefs',
'min_description': 'always seek information that challenges your existing beliefs'
},
'availability': {
'max_description': 'always judge frequency and probability based on how easily examples come to mind rather than actual statistics',
'min_description': 'never judge frequency based on ease of recall and always rely on objective data and actual statistics'
}
}

Expand Down
4 changes: 4 additions & 0 deletions control/prompt_experiment.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,10 @@ def _generate_likert_control_prompt(self, level):
'confirmation': {
'max_description': 'always seek only information that confirms your existing beliefs',
'min_description': 'never seek only information that confirms your existing beliefs'
},
'availability': {
'max_description': 'always judge frequency and probability based on how easily examples come to mind',
'min_description': 'never judge frequency based on ease of recall and always rely on actual statistics'
}
}

Expand Down
Loading