Skip to content

Commit ef16a0f

Browse files
committed
Fix/Mod: fixed stop+df practice feedback bug/changed feedback text in
stop tasks
1 parent 577aece commit ef16a0f

File tree

11 files changed

+24
-24
lines changed

11 files changed

+24
-24
lines changed

stop_signal_single_task_network/experiment.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -722,7 +722,7 @@ var practiceStopNode = {
722722

723723
if (stop_signal_respond === minStopCorrectPractice){
724724
feedback_text +=
725-
'</p><p class = block-text>You have been responding too slowly. Please respond as quickly and accurately to each stimulus that requires a response.'
725+
'</p><p class = block-text>Do not slow down and wait for the star to appear. Please respond as quickly and accurately as possible when a star does not appear.'
726726

727727
}
728728

@@ -859,7 +859,7 @@ var testNode = {
859859

860860
if (stop_signal_respond < minStopCorrect){
861861
feedback_text +=
862-
'</p><p class = block-text>You have been responding too slowly. Please respond as quickly and accurately to each stimulus that requires a response.'
862+
'</p><p class = block-text>Do not slow down and wait for the star to appear. Please respond as quickly and accurately as possible when a star does not appear.'
863863

864864
}
865865

stop_signal_single_task_network__fmri/experiment.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -863,7 +863,7 @@ var testNode0 = {
863863

864864
if (stop_signal_respond < minStopCorrect){
865865
feedback_text +=
866-
'</p><p class = instruct-text>You have been responding too slowly. Please respond as quickly and accurately to each stimulus that requires a response.'
866+
'</p><p class = instruct-text>Do not slow down and wait for the star to appear. Please respond as quickly and accurately as possible when a star does not appear.'
867867

868868
}
869869

@@ -967,7 +967,7 @@ var testNode = {
967967

968968
if (stop_signal_respond < minStopCorrect){
969969
feedback_text +=
970-
'</p><p class = instruct-text>You have been responding too slowly. Please respond as quickly and accurately to each stimulus that requires a response.'
970+
'</p><p class = instruct-text>Do not slow down and wait for the star to appear. Please respond as quickly and accurately as possible when a star does not appear.'
971971

972972
}
973973

stop_signal_single_task_network__practice/experiment.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -674,7 +674,7 @@ var practiceStopNode = {
674674

675675
if (stop_signal_respond === minStopCorrectPractice){
676676
practice_feedback_text +=
677-
'</p><p class = block-text>You have been responding too slowly. Please respond as quickly and accurately to each stimulus that requires a response.'
677+
'</p><p class = block-text>Do not slow down and wait for the star to appear. Please respond as quickly and accurately as possible when a star does not appear.'
678678

679679
}
680680

stop_signal_with_cued_task_switching/experiment.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -900,7 +900,7 @@ var practiceNode = {
900900

901901
if (stop_acc === maxStopCorrectPractice){
902902
feedback_text +=
903-
'</p><p class = block-text>You have been responding too slowly. Please respond as quickly and accurately to each stimulus that requires a response.'
903+
'</p><p class = block-text>Do not slow down and wait for the star to appear. Please respond as quickly and accurately as possible when a star does not appear.'
904904

905905
}
906906

@@ -1053,7 +1053,7 @@ var testNode = {
10531053

10541054
if (stop_acc > maxStopCorrect){
10551055
feedback_text +=
1056-
'</p><p class = block-text>You have been responding too slowly. Please respond as quickly and accurately to each stimulus that requires a response.'
1056+
'</p><p class = block-text>Do not slow down and wait for the star to appear. Please respond as quickly and accurately as possible when a star does not appear.'
10571057
}
10581058

10591059
if (stop_acc < minStopCorrect){

stop_signal_with_directed_forgetting/experiment.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -943,13 +943,13 @@ var practiceNode = {
943943
'</p><p class = block-text>You have been responding too slowly.'
944944
}
945945

946-
if (stop_correct === maxStopCorrectPractice){
946+
if (stop_acc === maxStopCorrectPractice){
947947
feedback_text +=
948-
'</p><p class = block-text>You have been responding too slowly. Please respond as quickly and accurately to each stimulus that requires a response.'
948+
'</p><p class = block-text>Do not slow down and wait for the star to appear. Please respond as quickly and accurately as possible when a star does not appear.'
949949

950950
}
951951

952-
if (stop_correct === minStopCorrectPractice){
952+
if (stop_acc === minStopCorrectPractice){
953953
feedback_text +=
954954
'</p><p class = block-text>You have not been stopping your response when stars are present. Please try your best to stop your response if you see a star.'
955955

@@ -1058,7 +1058,7 @@ var testNode = {
10581058

10591059
if (stop_acc > maxStopCorrect){
10601060
feedback_text +=
1061-
'</p><p class = block-text>You have been responding too slowly. Please respond as quickly and accurately to each stimulus that requires a response.'
1061+
'</p><p class = block-text>Do not slow down and wait for the star to appear. Please respond as quickly and accurately as possible when a star does not appear.'
10621062

10631063
}
10641064

stop_signal_with_flanker/experiment.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -661,7 +661,7 @@ var practiceNode = {
661661

662662
if (stop_acc === maxStopCorrectPractice){
663663
feedback_text +=
664-
'</p><p class = block-text>You have been responding too slowly. Please respond as quickly and accurately to each stimulus that requires a response.'
664+
'</p><p class = block-text>Do not slow down and wait for the star to appear. Please respond as quickly and accurately as possible when a star does not appear.'
665665

666666
}
667667

@@ -803,7 +803,7 @@ var testNode = {
803803

804804
if (stop_acc > maxStopCorrect){
805805
feedback_text +=
806-
'</p><p class = block-text>You have been responding too slowly. Please respond as quickly and accurately to each stimulus that requires a response.'
806+
'</p><p class = block-text>Do not slow down and wait for the star to appear. Please respond as quickly and accurately as possible when a star does not appear.'
807807

808808
}
809809

stop_signal_with_go_nogo/experiment.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -812,7 +812,7 @@ var practiceStopNode = {
812812
'</p><p class = block-text>You have not been stopping your response when stars are present. Please try your best to stop your response if you see a star.'
813813
} else if ((stop_signal_respond === stop_signal_respond_lower_thresh_practice) && (average_rt >= rt_thresh)) {
814814
feedback_text +=
815-
'</p><p class = block-text>You have been responding too slowly, please respond to each shape as quickly and as accurately as possible.'
815+
'</p><p class = block-text>Do not slow down and wait for the star to appear. Please respond as quickly and accurately as possible when a star does not appear.'
816816
}
817817

818818
feedback_text += '</p><p class = block-text>Redoing this practice.'
@@ -969,7 +969,7 @@ var testNode = {
969969
'</p><p class = block-text>Please stop your response if you see a star.'
970970
} else if ((stop_signal_respond < stop_signal_respond_lower_thresh) && (average_rt >= rt_thresh)) {
971971
feedback_text +=
972-
'</p><p class = block-text>You have been responding too slowly, please respond to each shape as quickly and as accurately as possible.'
972+
'</p><p class = block-text>Do not slow down and wait for the star to appear. Please respond as quickly and accurately as possible when a star does not appear.'
973973
}
974974

975975

stop_signal_with_n_back/experiment.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -757,7 +757,7 @@ var practiceNode = {
757757

758758
if (stop_signal_respond === minStopCorrectPractice){
759759
feedback_text +=
760-
'</p><p class = block-text>You have been responding too slowly. Please respond as quickly and accurately to each stimulus that requires a response.'
760+
'</p><p class = block-text>Do not slow down and wait for the star to appear. Please respond as quickly and accurately as possible when a star does not appear.'
761761
}
762762

763763

@@ -871,7 +871,7 @@ var testNode = {
871871

872872
if (stop_signal_respond < minStopCorrect){
873873
feedback_text +=
874-
'</p><p class = block-text>You have been responding too slowly. Please respond as quickly and accurately to each stimulus that requires a response.'
874+
'</p><p class = block-text>Do not slow down and wait for the star to appear. Please respond as quickly and accurately as possible when a star does not appear.'
875875
}
876876

877877
if (testCount == numTestBlocks){

stop_signal_with_predictable_task_switching/experiment.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -770,7 +770,7 @@ var practiceNode = {
770770

771771
if (stop_success_percentage === upper_stop_success_bound_practice){
772772
feedback_text +=
773-
'</p><p class = block-text>You have been responding too slowly. Please respond as quickly and accurately as possible.'
773+
'</p><p class = block-text>Do not slow down and wait for the star to appear. Please respond as quickly and accurately as possible when a star does not appear.'
774774
}
775775

776776
if (stop_success_percentage === lower_stop_success_bound_practice){
@@ -906,7 +906,7 @@ var testNode = {
906906

907907
if (stop_success_percentage > upper_stop_success_bound){
908908
feedback_text +=
909-
'</p><p class = block-text>You have been responding too slowly. Please respond as quickly as possible without sacrificing accuracy.'
909+
'</p><p class = block-text>Do not slow down and wait for the star to appear. Please respond as quickly and accurately as possible when a star does not appear.'
910910
}
911911

912912
if (stop_success_percentage < lower_stop_success_bound){

stop_signal_with_shape_matching/experiment.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -752,7 +752,7 @@ var practiceNode = {
752752

753753
if (stop_acc === maxStopCorrectPractice){
754754
feedback_text +=
755-
'</p><p class = block-text>You have been responding too slowly. Please respond as quickly and accurately to each stimulus that requires a response.'
755+
'</p><p class = block-text>Do not slow down and wait for the star to appear. Please respond as quickly and accurately as possible when a star does not appear.'
756756
}
757757

758758
if (stop_acc === minStopCorrectPractice){
@@ -891,7 +891,7 @@ var testNode = {
891891

892892
if (stop_acc > maxStopCorrect){
893893
feedback_text +=
894-
'</p><p class = block-text>You have been responding too slowly. Please respond as quickly and accurately to each stimulus that requires a response.'
894+
'</p><p class = block-text>Do not slow down and wait for the star to appear. Please respond as quickly and accurately as possible when a star does not appear.'
895895

896896
}
897897

stop_signal_with_spatial_task_switching/experiment.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -812,7 +812,7 @@ var practiceNode = {
812812

813813
if (stop_success_percentage === upper_stop_success_bound_practice){
814814
feedback_text +=
815-
'</p><p class = block-text>You have been responding too slowly. Please respond as quickly and accurately as possible.'
815+
'</p><p class = block-text>Do not slow down and wait for the star to appear. Please respond as quickly and accurately as possible when a star does not appear.'
816816
}
817817

818818
if (stop_success_percentage === lower_stop_success_bound_practice){
@@ -951,7 +951,7 @@ var testNode = {
951951

952952
if (stop_success_percentage > upper_stop_success_bound){
953953
feedback_text +=
954-
'</p><p class = block-text>You have been responding too slowly. Please respond as quickly as possible without sacrificing accuracy.'
954+
'</p><p class = block-text>Do not slow down and wait for the star to appear. Please respond as quickly and accurately as possible when a star does not appear.'
955955
}
956956

957957
if (stop_success_percentage < lower_stop_success_bound){
@@ -993,4 +993,4 @@ stop_signal_with_spatial_task_switching_experiment.push(testNode)
993993
stop_signal_with_spatial_task_switching_experiment.push(feedback_block)
994994

995995
stop_signal_with_spatial_task_switching_experiment.push(post_task_block)
996-
stop_signal_with_spatial_task_switching_experiment.push(end_block)
996+
stop_signal_with_spatial_task_switching_experiment.push(end_block)

0 commit comments

Comments
 (0)