esv-intervention-eval
Leveraging AI-Generated Emotional Self-Voice to Nudge People towards their Ideal Selves — Fang et al. (2024) (arXiv:2409.11531, 2024)
What this evaluates
Evaluates the psychological and behavioral impact of an AI-generated emotional self-voice intervention compared to text-only and control conditions on goal-related resilience, confidence, motivation, and emotional states.
Datasets
- Custom Human-Subject Intervention Dataset — total ?; splits: pre-intervention (-1), post-intervention (-1)
Metrics
VADER compound score — range: [-1, 1]
- Normalized, weighted composite score of sentiment polarity for free-text responses, ranging from -1 (negative) to 1 (positive).
Self-report questionnaire scores (primary) — range: [1, 7]
- Likert-scale ratings (1-7) measuring psychological constructs including valence, arousal, resilience, confidence, motivation, commitment, vividness, similarity, and positive affect.
Input / output format
Input: Participants receive scenario prompts (goal failure or habit struggle) and are assigned to Control, Text, or ESV conditions. They complete pre-intervention and post-intervention questionnaires and provide free-text reflections.
Output: Numeric Likert-scale ratings for psychological outcomes and free-text responses for sentiment analysis.
Scoring recipe
# For continuous outcomes (valence, arousal, resilience):
lme_model = lmer(outcome ~ Test * Condition + covariates + (1|Subject), data=df)
p_val_lme = summary(lme_model).p_value
# For collinear outcomes (confidence, motivation, commitment):
df_art = aligned_rank_transform(df, by=['Test', 'Condition'])
anova_model = aov(outcome ~ Test * Condition, data=df_art)
p_val_anova = anova_model.p_value
# For text responses:
vader_score = vader_sentiment(text_response).compound
Common pitfalls
- Ignoring repeated-measures structure: Standard ANOVA/t-tests on pre/post data violate independence assumptions; LME or ART-ANOVA is required.
- Overlooking collinearity: Pre/post and condition effects were perfectly separated for confidence/motivation/commitment, necessitating Aligned Rank Transform instead of standard LME.
- Misinterpreting VADER: VADER captures general sentiment polarity, not specific psychological constructs, so it should not be directly equated with questionnaire scores.
Evidence (verbatim from paper)
For the quantitative data, we used a linear mixed effects (LME) model (lme4 package in R [6]) to account for the repeated measurement nature of the data, namely each subject has 2 observations: pre-intervention and post-intervention. ... The main outcomes are valence, arousal, resilience, confidence, motivation, and commitment. ... We also used VADER [41] to quantitatively capture the sentiment in the free responses.
Citation
@misc{fang2024leveraging,
title={Leveraging AI-Generated Emotional Self-Voice to Nudge People towards their Ideal Selves},
author={Fang et al. (2024)},
year={2024},
note={arXiv:2409.11531}
}
1---2name: esv-intervention-eval3description: Evaluates the psychological and behavioral impact of an AI-generated emotional self-voice intervention compared to text-only and control conditions on goal-related resilience, confidence, motivation, and emotional states. Use when the user wants to benchmark on Custom Human-Subject Intervention Dataset, or asks about evaluating this task. Reports Self-report questionnaire scores.4---56# esv-intervention-eval78> Leveraging AI-Generated Emotional Self-Voice to Nudge People towards their Ideal Selves — Fang et al. (2024) (arXiv:2409.11531, 2024)910## What this evaluates1112Evaluates the psychological and behavioral impact of an AI-generated emotional self-voice intervention compared to text-only and control conditions on goal-related resilience, confidence, motivation, and emotional states.1314## Datasets1516- **Custom Human-Subject Intervention Dataset** — total ?; splits: pre-intervention (-1), post-intervention (-1)1718## Metrics1920- `VADER compound score` — range: [-1, 1]21 - Normalized, weighted composite score of sentiment polarity for free-text responses, ranging from -1 (negative) to 1 (positive).22- `Self-report questionnaire scores` **(primary)** — range: [1, 7]23 - Likert-scale ratings (1-7) measuring psychological constructs including valence, arousal, resilience, confidence, motivation, commitment, vividness, similarity, and positive affect.2425## Input / output format2627**Input**: Participants receive scenario prompts (goal failure or habit struggle) and are assigned to Control, Text, or ESV conditions. They complete pre-intervention and post-intervention questionnaires and provide free-text reflections.2829**Output**: Numeric Likert-scale ratings for psychological outcomes and free-text responses for sentiment analysis.3031## Scoring recipe3233```python34# For continuous outcomes (valence, arousal, resilience):35lme_model = lmer(outcome ~ Test * Condition + covariates + (1|Subject), data=df)36p_val_lme = summary(lme_model).p_value3738# For collinear outcomes (confidence, motivation, commitment):39df_art = aligned_rank_transform(df, by=['Test', 'Condition'])40anova_model = aov(outcome ~ Test * Condition, data=df_art)41p_val_anova = anova_model.p_value4243# For text responses:44vader_score = vader_sentiment(text_response).compound45```4647## Common pitfalls4849- Ignoring repeated-measures structure: Standard ANOVA/t-tests on pre/post data violate independence assumptions; LME or ART-ANOVA is required.50- Overlooking collinearity: Pre/post and condition effects were perfectly separated for confidence/motivation/commitment, necessitating Aligned Rank Transform instead of standard LME.51- Misinterpreting VADER: VADER captures general sentiment polarity, not specific psychological constructs, so it should not be directly equated with questionnaire scores.5253## Evidence (verbatim from paper)5455> For the quantitative data, we used a linear mixed effects (LME) model (lme4 package in R [6]) to account for the repeated measurement nature of the data, namely each subject has 2 observations: pre-intervention and post-intervention. ... The main outcomes are valence, arousal, resilience, confidence, motivation, and commitment. ... We also used VADER [41] to quantitatively capture the sentiment in the free responses.5657## Citation5859```bibtex60@misc{fang2024leveraging,61 title={Leveraging AI-Generated Emotional Self-Voice to Nudge People towards their Ideal Selves},62 author={Fang et al. (2024)},63 year={2024},64 note={arXiv:2409.11531}65}66```6768- arXiv: 2409.11531