summaryrefslogtreecommitdiff
path: root/master_thesis/frensch_task.py
diff options
context:
space:
mode:
authorNiclas Dobbertin <niclas.dobbertin@mailbox.org>2023-10-01 17:05:36 +0200
committerNiclas Dobbertin <niclas.dobbertin@mailbox.org>2023-10-01 17:05:36 +0200
commit2d445574131a42bd7a4f1bfc2e9f5106a344add3 (patch)
treed474aed0a8d60e30b11cead503959c90b99b7f92 /master_thesis/frensch_task.py
parent7dfddb6214e73c49864edddadea9a7d37a2f0ab0 (diff)
fix and set random condition
Diffstat (limited to 'master_thesis/frensch_task.py')
-rw-r--r--master_thesis/frensch_task.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/master_thesis/frensch_task.py b/master_thesis/frensch_task.py
index b680ccd..4bd2839 100644
--- a/master_thesis/frensch_task.py
+++ b/master_thesis/frensch_task.py
@@ -116,7 +116,9 @@ def run_trial(water_sample, procedure_keys: list, condition):
water_sample.print_all()
if condition == "random":
+ overall = procedure_keys.pop()
random.shuffle(procedure_keys)
+ procedure_keys.append(overall)
solid = DisplayVariable("Mineralien", [water_sample.solid])
algae = DisplayVariable("Algen", [water_sample.algae])
@@ -223,7 +225,7 @@ results = {}
for i in range(TRAIN_TRIALS):
print(train_procedures)
answer, procedure_keys = run_trial(
- all_samples[i], train_procedures, ORDER_CONDITIONS[0]
+ all_samples[i], train_procedures, ORDER_CONDITIONS[1]
)
answer_dict = {}
answer_dict["procedure_order"] = procedure_keys