Skip to content

Commit

Permalink
Merge pull request #739 from neuroscout/extract_sm
Browse files Browse the repository at this point in the history
Extract Sensorimotor Norms
  • Loading branch information
adelavega committed Feb 20, 2020
2 parents 32f2bc0 + bb299e7 commit f53f285
Show file tree
Hide file tree
Showing 3 changed files with 52 additions and 2 deletions.
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

0 comments on commit f53f285

Please sign in to comment.