Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Extract Sensorimotor Norms #739

Merged
merged 3 commits into from
Feb 20, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
15 changes: 13 additions & 2 deletions neuroscout/config/datasets/sherlockmerlin.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,16 @@
"url": "https://openneuro.org/datasets/ds001110",
"tasks": {
"SherlockMovie": {
"summary": "AV Presentation: Sherlock Episode",
"summary": "AV Presentation: Sherlock Episode",
"converters": [
],
"extractors": [
["PredefinedDictionaryExtractor", {"variables":
{
"lancastersensorimotornorms": ["Auditory.mean", "Gustatory.mean", "Haptic.mean", "Interoceptive.mean", "Olfactory.mean", "Visual.mean", "Foot_leg.mean", "Hand_arm.mean", "Head.mean", "Mouth.mean", "Torso.mean"]
},
"missing": "n/a"}
]
],
"tokenized_extractors": [
],
Expand All @@ -22,9 +28,14 @@
"converters": [
],
"extractors": [
["PredefinedDictionaryExtractor", {"variables":
{
"lancastersensorimotornorms": ["Auditory.mean", "Gustatory.mean", "Haptic.mean", "Interoceptive.mean", "Olfactory.mean", "Visual.mean", "Foot_leg.mean", "Hand_arm.mean", "Head.mean", "Mouth.mean", "Torso.mean"]
},
"missing": "n/a"}
]
],
"tokenized_extractors": [
["PretrainedBertEncodingExtractor", {}, {"window": "pre", "n": 25}]
],
"transformations": [
]
Expand Down
33 changes: 33 additions & 0 deletions neuroscout/config/feature_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -425,6 +425,39 @@
},
"calgarysemanticdecision_Concrete_rating": {
"description": "Concreteness (calgarysemanticdecision)."
},
"lancastersensorimotornorms_Auditory.mean": {
"description": "how strongly the speoken word is experienced by hearing"
},
"lancastersensorimotornorms_Gustatory.mean": {
"description": "how strongly the speoken word is experienced by tasting"
},
"lancastersensorimotornorms_Haptic.mean": {
"description": "how strongly the speoken word is experienced by feeling through touch"
},
"lancastersensorimotornorms_Interoceptive.mean": {
"description": "how strongly the speoken word is experienced by sensations inside the body"
},
"lancastersensorimotornorms_Olfactory.mean": {
"description": "how strongly the speoken word is experienced by smelling"
},
"lancastersensorimotornorms_Visual.mean": {
"description": "how strongly the speoken word is experienced by seeing"
},
"lancastersensorimotornorms_Foot_leg.mean": {
"description": "how strongly the speoken word is experienced by performing an action with the foot / leg"
},
"lancastersensorimotornorms_Hand_arm.mean": {
"description": "how strongly the speoken word is experienced by performing an action with the hand / arm"
},
"lancastersensorimotornorms_Head.mean": {
"description": "how strongly the speoken word is experienced by performing an action with the head excluding mouth"
},
"lancastersensorimotornorms_Mouth.mean": {
"description": "how strongly the speoken word is experienced by performing an action with the mouth / throat"
},
"lancastersensorimotornorms_Torso.mean": {
"description": "how strongly the speoken word is experienced by performing an action with the torso"
}
}
}
Expand Down
6 changes: 6 additions & 0 deletions neuroscout/config/transformers.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,12 @@
"aoa": ["AoA_Kup"],
"concreteness": ["Conc.M"]},
"missing": "n/a"} ],
["PredefinedDictionaryExtractor", {"variables":
{
"lancastersensorimotornorms": ["Auditory.mean", "Gustatory.mean", "Haptic.mean", "Interoceptive.mean", "Olfactory.mean", "Visual.mean", "Foot_leg.mean", "Hand_arm.mean", "Head.mean", "Mouth.mean", "Torso.mean"]
},
"missing": "n/a"}
],
["LengthExtractor", {}]
],
"transformations":[
Expand Down