-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #41 from ITM-Kitware/dev/fixes-for-metrics-eval
Dev/fixes for metrics eval
- Loading branch information
Showing
34 changed files
with
577 additions
and
71 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
23 changes: 23 additions & 0 deletions
23
adm_configs/metrics-evaluation/hybrid_kaleido_adept_high_no_other_choices.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
adm: | ||
name: 'HybridKaleidoADM' | ||
init_kwargs: | ||
kaleido_init_kwargs: | ||
model_name: 'allenai/kaleido-large' | ||
use_tqdm: False | ||
|
||
llm_init_kwargs: | ||
hf_model: 'meta-llama/Llama-2-7b-chat-hf' | ||
precision: 'half' | ||
|
||
inference_kwargs: | ||
# Kaleido kwargs | ||
distance_fn: 'RelevanceWeightedDistance' | ||
kdma_descriptions_map: 'align_system/algorithms/lib/templates/kdma_descriptions_short_metrics_eval.yml' | ||
# LLM kwargs | ||
answer_attempts: 5 | ||
action_template: 'Choosing to "{{choice}}". In the context of the following scenario: {{scene_state}} {{mission}} {{decision_environment}} With the following casualties:\n{{characters_str}}' | ||
|
||
alignment_target_override: | ||
id: ADEPT-metrics_eval-alignment-target-train-HIGH | ||
kdma_values: | ||
- {kdma: MoralDesert, value: 1} |
23 changes: 23 additions & 0 deletions
23
adm_configs/metrics-evaluation/hybrid_kaleido_adept_low_no_other_choices.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
adm: | ||
name: 'HybridKaleidoADM' | ||
init_kwargs: | ||
kaleido_init_kwargs: | ||
model_name: 'allenai/kaleido-large' | ||
use_tqdm: False | ||
|
||
llm_init_kwargs: | ||
hf_model: 'meta-llama/Llama-2-7b-chat-hf' | ||
precision: 'half' | ||
|
||
inference_kwargs: | ||
# Kaleido kwargs | ||
distance_fn: 'RelevanceWeightedDistance' | ||
kdma_descriptions_map: 'align_system/algorithms/lib/templates/kdma_descriptions_short_metrics_eval.yml' | ||
# LLM kwargs | ||
answer_attempts: 5 | ||
action_template: 'Choosing to "{{choice}}". In the context of the following scenario: {{scene_state}} {{mission}} {{decision_environment}} With the following casualties:\n{{characters_str}}' | ||
|
||
alignment_target_override: | ||
id: ADEPT-metrics_eval-alignment-target-train-LOW | ||
kdma_values: | ||
- {kdma: MoralDesert, value: 0} |
24 changes: 24 additions & 0 deletions
24
adm_configs/metrics-evaluation/hybrid_kaleido_soartech_high_no_other_choices.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
adm: | ||
name: 'HybridKaleidoADM' | ||
init_kwargs: | ||
kaleido_init_kwargs: | ||
model_name: 'allenai/kaleido-large' | ||
use_tqdm: False | ||
|
||
llm_init_kwargs: | ||
hf_model: 'meta-llama/Llama-2-7b-chat-hf' | ||
precision: 'half' | ||
|
||
inference_kwargs: | ||
# Kaleido kwargs | ||
distance_fn: 'RelevanceWeightedDistance' | ||
kdma_descriptions_map: 'align_system/algorithms/lib/templates/kdma_descriptions_short_metrics_eval.yml' | ||
# LLM kwargs | ||
answer_attempts: 5 | ||
action_template: 'Choosing to "{{choice}}". In the context of the following scenario: {{scene_state}} {{mission}} {{decision_environment}} With the following casualties:\n{{characters_str}}' | ||
|
||
alignment_target_override: | ||
id: maximization_high | ||
kdma_values: | ||
- kdma: maximization | ||
value: 0.9 |
27 changes: 27 additions & 0 deletions
27
adm_configs/metrics-evaluation/hybrid_kaleido_soartech_high_vrd_rephrase1.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
adm: | ||
name: 'HybridKaleidoADM' | ||
init_kwargs: | ||
kaleido_init_kwargs: | ||
model_name: 'allenai/kaleido-large' | ||
use_tqdm: False | ||
|
||
llm_init_kwargs: | ||
hf_model: 'meta-llama/Llama-2-7b-chat-hf' | ||
precision: 'half' | ||
|
||
inference_kwargs: | ||
# Kaleido kwargs | ||
distance_fn: 'RelevanceWeightedDistance' | ||
kdma_descriptions_map: | ||
maximization: | ||
name: Maximization | ||
description: Prioritize gathering the most information possible before acting on that information to maximize lives saved | ||
vrd: Value | ||
# LLM kwargs | ||
answer_attempts: 5 | ||
|
||
alignment_target_override: | ||
id: maximization_high | ||
kdma_values: | ||
- kdma: maximization | ||
value: 0.9 |
27 changes: 27 additions & 0 deletions
27
adm_configs/metrics-evaluation/hybrid_kaleido_soartech_high_vrd_rephrase2.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
adm: | ||
name: 'HybridKaleidoADM' | ||
init_kwargs: | ||
kaleido_init_kwargs: | ||
model_name: 'allenai/kaleido-large' | ||
use_tqdm: False | ||
|
||
llm_init_kwargs: | ||
hf_model: 'meta-llama/Llama-2-7b-chat-hf' | ||
precision: 'half' | ||
|
||
inference_kwargs: | ||
# Kaleido kwargs | ||
distance_fn: 'RelevanceWeightedDistance' | ||
kdma_descriptions_map: | ||
maximization: | ||
name: Maximization | ||
description: Prioritize gathering the most information possible before acting on that information, but not at the detriment of casualties | ||
vrd: Value | ||
# LLM kwargs | ||
answer_attempts: 5 | ||
|
||
alignment_target_override: | ||
id: maximization_low | ||
kdma_values: | ||
- kdma: maximization | ||
value: 0.1 |
27 changes: 27 additions & 0 deletions
27
adm_configs/metrics-evaluation/hybrid_kaleido_soartech_high_vrd_rephrase3.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
adm: | ||
name: 'HybridKaleidoADM' | ||
init_kwargs: | ||
kaleido_init_kwargs: | ||
model_name: 'allenai/kaleido-large' | ||
use_tqdm: False | ||
|
||
llm_init_kwargs: | ||
hf_model: 'meta-llama/Llama-2-7b-chat-hf' | ||
precision: 'half' | ||
|
||
inference_kwargs: | ||
# Kaleido kwargs | ||
distance_fn: 'RelevanceWeightedDistance' | ||
kdma_descriptions_map: | ||
maximization: | ||
name: Maximization | ||
description: Favor gathering information to plan actions that maximize lives saved | ||
vrd: Value | ||
# LLM kwargs | ||
answer_attempts: 5 | ||
|
||
alignment_target_override: | ||
id: maximization_high | ||
kdma_values: | ||
- kdma: maximization | ||
value: 0.9 |
27 changes: 27 additions & 0 deletions
27
adm_configs/metrics-evaluation/hybrid_kaleido_soartech_high_vrd_rephrase4.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
adm: | ||
name: 'HybridKaleidoADM' | ||
init_kwargs: | ||
kaleido_init_kwargs: | ||
model_name: 'allenai/kaleido-large' | ||
use_tqdm: False | ||
|
||
llm_init_kwargs: | ||
hf_model: 'meta-llama/Llama-2-7b-chat-hf' | ||
precision: 'half' | ||
|
||
inference_kwargs: | ||
# Kaleido kwargs | ||
distance_fn: 'RelevanceWeightedDistance' | ||
kdma_descriptions_map: | ||
maximization: | ||
name: Maximization | ||
description: Favor gathering the most information possible to take actions that maximize casualty outcomes | ||
vrd: Value | ||
# LLM kwargs | ||
answer_attempts: 5 | ||
|
||
alignment_target_override: | ||
id: maximization_high | ||
kdma_values: | ||
- kdma: maximization | ||
value: 0.9 |
27 changes: 27 additions & 0 deletions
27
adm_configs/metrics-evaluation/hybrid_kaleido_soartech_high_vrd_rephrase5.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
adm: | ||
name: 'HybridKaleidoADM' | ||
init_kwargs: | ||
kaleido_init_kwargs: | ||
model_name: 'allenai/kaleido-large' | ||
use_tqdm: False | ||
|
||
llm_init_kwargs: | ||
hf_model: 'meta-llama/Llama-2-7b-chat-hf' | ||
precision: 'half' | ||
|
||
inference_kwargs: | ||
# Kaleido kwargs | ||
distance_fn: 'RelevanceWeightedDistance' | ||
kdma_descriptions_map: | ||
maximization: | ||
name: Maximization | ||
description: Prioritize gathering information to take the most informed, life-saving actions | ||
vrd: Value | ||
# LLM kwargs | ||
answer_attempts: 5 | ||
|
||
alignment_target_override: | ||
id: maximization_high | ||
kdma_values: | ||
- kdma: maximization | ||
value: 0.9 |
24 changes: 24 additions & 0 deletions
24
adm_configs/metrics-evaluation/hybrid_kaleido_soartech_low_no_other_choices.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
adm: | ||
name: 'HybridKaleidoADM' | ||
init_kwargs: | ||
kaleido_init_kwargs: | ||
model_name: 'allenai/kaleido-large' | ||
use_tqdm: False | ||
|
||
llm_init_kwargs: | ||
hf_model: 'meta-llama/Llama-2-7b-chat-hf' | ||
precision: 'half' | ||
|
||
inference_kwargs: | ||
# Kaleido kwargs | ||
distance_fn: 'RelevanceWeightedDistance' | ||
kdma_descriptions_map: 'align_system/algorithms/lib/templates/kdma_descriptions_short_metrics_eval.yml' | ||
# LLM kwargs | ||
answer_attempts: 5 | ||
action_template: 'Choosing to "{{choice}}". In the context of the following scenario: {{scene_state}} {{mission}} {{decision_environment}} With the following casualties:\n{{characters_str}}' | ||
|
||
alignment_target_override: | ||
id: maximization_low | ||
kdma_values: | ||
- kdma: maximization | ||
value: 0.1 |
27 changes: 27 additions & 0 deletions
27
adm_configs/metrics-evaluation/hybrid_kaleido_soartech_low_vrd_rephrase1.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
adm: | ||
name: 'HybridKaleidoADM' | ||
init_kwargs: | ||
kaleido_init_kwargs: | ||
model_name: 'allenai/kaleido-large' | ||
use_tqdm: False | ||
|
||
llm_init_kwargs: | ||
hf_model: 'meta-llama/Llama-2-7b-chat-hf' | ||
precision: 'half' | ||
|
||
inference_kwargs: | ||
# Kaleido kwargs | ||
distance_fn: 'RelevanceWeightedDistance' | ||
kdma_descriptions_map: | ||
maximization: | ||
name: Maximization | ||
description: Prioritize gathering the most information possible before acting on that information to maximize lives saved | ||
vrd: Value | ||
# LLM kwargs | ||
answer_attempts: 5 | ||
|
||
alignment_target_override: | ||
id: maximization_low | ||
kdma_values: | ||
- kdma: maximization | ||
value: 0.1 |
27 changes: 27 additions & 0 deletions
27
adm_configs/metrics-evaluation/hybrid_kaleido_soartech_low_vrd_rephrase2.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
adm: | ||
name: 'HybridKaleidoADM' | ||
init_kwargs: | ||
kaleido_init_kwargs: | ||
model_name: 'allenai/kaleido-large' | ||
use_tqdm: False | ||
|
||
llm_init_kwargs: | ||
hf_model: 'meta-llama/Llama-2-7b-chat-hf' | ||
precision: 'half' | ||
|
||
inference_kwargs: | ||
# Kaleido kwargs | ||
distance_fn: 'RelevanceWeightedDistance' | ||
kdma_descriptions_map: | ||
maximization: | ||
name: Maximization | ||
description: Prioritize gathering the most information possible before acting on that information, but not at the detriment of casualties | ||
vrd: Value | ||
# LLM kwargs | ||
answer_attempts: 5 | ||
|
||
alignment_target_override: | ||
id: maximization_low | ||
kdma_values: | ||
- kdma: maximization | ||
value: 0.1 |
Oops, something went wrong.