This evaluation probes auditory self-recognition boundaries by measuring how much AI voice morphing a participant can tolerate before they stop recognizing their own voice. It assesses perceptual thresholds, decision latency, and the influence of acoustic embedding distances and demographic factors on voice identity perception. Use when the user wants to benchmark on VoiceMorph Experimental Dataset, or asks about evaluating this task. Reports lowess_T.
Scanned 9/11/2026
Install to Claude Code
npx -y skills add qhjqhj00/research-skills-pool --skill voice-morph-threshold-eval --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Voice Morph Threshold Eval?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/qhjqhj00-voice-morph-threshold-eval)More formats (shields.io, HTML) on the badges page.
---
name: voice-morph-threshold-eval
description: This evaluation probes auditory self-recognition boundaries by measuring how much AI voice morphing a participant can tolerate before they stop recognizing their own voice. It assesses perceptual thresholds, decision latency, and the influence of acoustic embedding distances and demographic factors on voice identity perception. Use when the user wants to benchmark on VoiceMorph Experimental Dataset, or asks about evaluating this task. Reports lowess_T.
metadata:
skill_kind: dataset_eval
source_arxiv: 2510.16192
bibtex_key: shimizu2025voicemorph
confidence: high
---
# voice-morph-threshold-eval
> VoiceMorph: How AI Voice Morphing Reveals the Boundaries of Auditory Self-Recognition — Shimizu et al. (2025) (arXiv:2510.16192, 2025)
## What this evaluates
This evaluation probes auditory self-recognition boundaries by measuring how much AI voice morphing a participant can tolerate before they stop recognizing their own voice. It assesses perceptual thresholds, decision latency, and the influence of acoustic embedding distances and demographic factors on voice identity perception.
## Datasets
- **VoiceMorph Experimental Dataset** — total ?; splits: test (-1)
## Metrics
- `lowess_T` **(primary)** — range: percent
- The percentage of voice morphing at which a participant's self-recognition rating drops below 4.0 on a 7-point Likert scale. Extracted by fitting a LOWESS curve (smoothing fraction 0.4) to ratings across morphing levels and finding the crossing point.
## Input / output format
**Input**: Audio clips of the participant's own voice, another speaker's voice, and morphed versions at varying degrees (0% to 100%). Participants listen to each clip and provide a self-recognition rating.
**Output**: A 7-point Likert scale rating (1-7) for self-recognition similarity, and the response time in milliseconds for each clip.
## Scoring recipe
```python
# Input: morphing_levels (0-100), ratings (7-point Likert), response_times (ms), embedding_distances
# 1. Fit LOWESS curve to ratings across morphing levels (frac=0.4)
lowess_fit = LOWESS(morphing_levels, ratings, frac=0.4)
# 2. Find crossing point where fit drops below 4.0
lowess_T = morphing_level where lowess_fit < 4.0
# 3. Compute correlations for embedding distances vs thresholds/RT
r_threshold = pearsonr(embedding_distances, lowess_T)
r_rt = pearsonr(embedding_distances, response_times)
# 4. Apply BH-FDR correction for pairwise condition contrasts
```
## Common pitfalls
- Threshold is defined at a rating of 4.0 on a 7-point scale, which is arbitrary and may not align with standard signal detection d-prime metrics.
- Acoustic embedding distances (e.g., Euclidean distance in latent space) do not predict perceptual thresholds, only response times; relying solely on embedding similarity will misrepresent recognition boundaries.
- Response times show a non-monotonic or weak trend with morphing level, requiring careful statistical control (e.g., FDR correction) to avoid false positives.
## Evidence (verbatim from paper)
> Table 2. OLS Regression Results: Voice Boundary Thresholds (lowess_T) ††: ... Dependent variable: voice boundary threshold (morphing % where self-recognition ¡ 4.0). First, we applied LOWESS (Locally Weighted Scatterplot Smoothing) with smoothing fraction 0.4 to extract individual perceptual thresholds where self-recognition ratings crossed below 4.0 on our 7-point scale.
## Citation
```bibtex
@misc{shimizu2025voicemorph,
title={VoiceMorph: How AI Voice Morphing Reveals the Boundaries of Auditory Self-Recognition},
author={Shimizu et al. (2025)},
year={2025},
note={arXiv:2510.16192}
}
```
- arXiv: 2510.16192
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!