-
Notifications
You must be signed in to change notification settings - Fork 2
/
config.yml
72 lines (72 loc) · 1.53 KB
/
config.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# Constants that control the timing of the task
constants:
# Countdown presented at the beginning of each run, in seconds
COUNTDOWN_DURATION: 12
# Proportion of trials in which to do the task (default = 50%)
TASK_RATE: 0.5
# How long each stimulus is presented, in seconds
IMAGE_DURATION: 0.4
# Interstimulus interval. Trial duration is IMAGE_DURATION + TARGET_ISI.
TARGET_ISI: 0.1
# How long to wait after start of presentation of stimulus to accept response
RESPONSE_WINDOW: 1
# Number of stimuli per block
N_STIMULI_PER_BLOCK: 12
# Number of single-category blocks per run
N_BLOCKS: 36
# Final screen presented at the end of each run, in seconds
END_SCREEN_DURATION: 2
# Total run duration, in seconds
TOTAL_DURATION: 240
# The different sets of categories that determine which stimuli are used
category_sets:
# The default categories
default:
baseline: null
bodies:
- body
characters:
- word
faces:
- adult
objects:
- car
places:
- house
scrambled:
- scrambled
# The alternate categories
alternate:
baseline: null
bodies:
- limb
characters:
- number
faces:
- child
objects:
- instrument
places:
- corridor
scrambled:
- scrambled
# Both sets of categories combined
both:
baseline: null
bodies:
- body
- limb
characters:
- word
- number
faces:
- adult
- child
objects:
- car
- instrument
places:
- house
- corridor
scrambled:
- scrambled