Spinfo Cologne at SemEval-2026 Task 4: Explainable Creation of Narrativity Embeddings
Summary
Spinfo Cologne's submission to SemEval-2026 Task 4 addresses Narrative Story Similarity and Narrative Representation Learning. The task involves selecting the narratively closer summary (Track A) and generating narrative vector embeddings (Track B). Their method employs a prompted large language model to explicitly elicit three narrativity aspects, which are then concatenated into a fixed-size narrative embedding. Comparing a GloVe baseline with contextualized sentence-transformer embeddings (all-MiniLM-L6-v2), the latter achieved 61.5% accuracy on the Track A development set. The official submission reached 60.25% accuracy on the Track A test set and 57.75% on Track B. Ablation studies showed the aspect pipeline slightly outperformed raw-text embeddings, but aspect contributions were uneven, with qualitative analysis pointing to inconsistent aspect generation and overemphasis on theme overlap as failure points.
Key takeaway
For NLP Engineers developing narrative understanding systems, consider integrating explainable aspect-based embeddings. Your models can benefit from using contextualized sentence-transformer embeddings like all-MiniLM-L6-v2, which significantly outperform static baselines. When prompting LLMs for narrative aspects, ensure consistency in generation and prioritize event-level similarity over broad thematic overlap to improve accuracy.
Key insights
Explainable narrative embeddings can be created by eliciting specific narrativity aspects with a prompted LLM.
Principles
- Contextualized embeddings outperform static baselines for narrative tasks.
- Explicit aspect elicitation can enhance interpretability in narrative embeddings.
- Inconsistent aspect generation can hinder narrative similarity performance.
Method
Elicit three narrativity aspects using a prompted large language model, then concatenate these aspect-wise representations to form a fixed-size narrative embedding, comparing static and contextualized variants.
In practice
- Use all-MiniLM-L6-v2 for narrative similarity tasks.
- Prompt LLMs for specific narrative aspects.
- Prioritize event-level similarity over theme overlap.
Topics
- SemEval-2026 Task 4
- Narrative Embeddings
- Large Language Models
- Sentence Transformers
- all-MiniLM-L6-v2
- Interpretability
- Story Similarity
Best for: Research Scientist, AI Scientist, NLP Engineer
Related on AIssential
Editorial summary, takeaway, and curation by AIssential. Original article published by Paper Index on ACL Anthology.