Papers
Topics
Authors
Recent
Search
2000 character limit reached

Frame Semantics in LLMs

Updated 9 July 2026
  • Frame semantics is defined as a structured representation of events, linking words to conceptual frames with roles and participants.
  • The study demonstrates that prompt-based inference and QA fine-tuning with Llama-3.1-8B significantly improve frame identification accuracy across benchmarks.
  • Generated frame definitions reveal latent frame knowledge in LLMs, offering insights into deep semantic understanding beyond mere label matching.

Searching arXiv for the target paper and closely related frame-semantic parsing work.

First, I’ll retrieve the target paper.

"Do LLMs Encode Frame Semantics? Evidence from Frame Identification" studies whether LLMs encode latent knowledge of frame semantics by focusing on frame identification, the disambiguation step in FrameNet-style semantic parsing that selects the semantic frame evoked by a target word in context (Chundru et al., 23 Sep 2025). The paper argues that frame semantics is not merely a labeling scheme for word senses: a frame is a structured conceptual scene, event, or state of affairs together with its participants and roles, and FrameNet operationalizes this theory by linking lexical units to semantic frames, descriptions, and example usages. Using FrameNet 1.7, prompt-based inference with Llama-3.1-8B-Instruct, and LoRA-based QA fine-tuning, the study presents evidence that LLMs can already perform frame identification effectively without explicit supervision, improve sharply with modest task-specific training, generalize to out-of-domain benchmarks, and generate semantically coherent frame definitions that are functionally useful for disambiguation (Chundru et al., 23 Sep 2025).

1. Frame semantics and the role of frame identification

Frame semantics, as presented in the paper, treats word meaning as relative to structured conceptual scenes. A frame represents a typical situation, event, or state of affairs together with the participants and roles that belong to it. FrameNet 1.7 operationalizes this view by associating lexical units with semantic frames and by defining those frames with descriptions and example usages; the resource contains over 13,000 lexical units and more than 1,200 frames (Chundru et al., 23 Sep 2025).

Within that framework, frame identification is the component of frame semantic parsing that asks, given a target word in a sentence, which FrameNet frame is evoked in that context. The paper treats this as the key disambiguation problem. Polysemy makes the task central: the running example is served, which can evoke Capacity or Assistance, with the correct selection depending on context. This is why the paper characterizes frame identification as a bottleneck for recovering semantic structure: if the wrong frame is selected, downstream argument or frame-element identification is also affected (Chundru et al., 23 Sep 2025).

A common misunderstanding is to equate a frame with an ordinary sense label. The paper explicitly resists that reduction. In its formulation, a frame is a richer conceptual structure, and accurate frame identification therefore supports deeper semantic understanding, lexical disambiguation, and structured meaning representation rather than only dictionary-style sense selection (Chundru et al., 23 Sep 2025).

2. Experimental design, prompt formats, and input representations

The empirical study centers on Llama-3.1-8B-Instruct under prompt-based inference and on a fine-tuned Llama-3.1-8B base model. Two prompt formats are evaluated. The Simple Prompt supplies the sentence, the target word, and candidate frames together with frame descriptions and lexical unit definitions, then asks for the best frame name in structured JSON. The Direct-QA Prompt labels candidate frames with letters such as A/B/C and asks for the correct option letter, again in JSON. Both formats are tested in zero-shot and few-shot settings, with the few-shot condition using 5 randomly selected demonstrations from the training set chosen to cover diverse frames and usages (Chundru et al., 23 Sep 2025).

The paper also varies the granularity of the candidate-frame information. It compares frame names only, frame names plus frame definitions, frame names plus lexical unit definitions, and the combination of all of these. The ablation shows that lexical unit definitions are especially helpful, and that the Direct-QA format generally works better than the Simple format. By contrast, alternative prompt styles including retrieval, rephrasing, and chain-of-thought did not produce meaningful gains, which is notable because it limits the extent to which the results can be attributed to prompt-surface engineering alone (Chundru et al., 23 Sep 2025).

The in-domain evaluation uses standard splits for both FrameNet 1.5 and FrameNet 1.7. The reported partitions are 15,017 train / 4,463 dev / 4,457 test for FN 1.5 and 19,391 train / 2,272 dev / 6,714 test for FN 1.7. This keeps the study anchored in the conventional supervised frame-identification setting while allowing the paper to separate prompt-only behavior from the effects of task-specific adaptation (Chundru et al., 23 Sep 2025).

3. In-domain performance under prompting and QA fine-tuning

Prompting alone already yields strong frame-identification accuracy. The results are summarized below.

Setting FN 1.5 FN 1.7
Simple zero-shot / few-shot 82.4 / 82.7 80.0 / 80.9
Direct-QA zero-shot / few-shot 82.5 / 83.3 81.7 / 83.5
QA fine-tuning 91.7 91.9

These numbers support the paper’s central claim that the model already possesses substantial latent frame-semantic knowledge. The margin between zero-shot and few-shot is present but modest, whereas the shift from prompting to supervised adaptation is much larger. In particular, the Direct-QA few-shot condition reaches 83.3 on FN 1.5 and 83.5 on FN 1.7, while fine-tuning raises performance to 91.7 and 91.9 respectively (Chundru et al., 23 Sep 2025).

The fine-tuning stage recasts frame identification as a multiple-choice QA problem. The input contains the sentence, the target word, and labeled candidate frames with definitions or lexical sense descriptions, and the model is trained to predict the correct label token using the language-model head. The training objective is standard cross-entropy loss over the restricted label set. The LoRA configuration is specified as rank 16, lora_alpha 32, batch size 1, 3 epochs, learning rate 2e-5, and fp16 mixed precision (Chundru et al., 23 Sep 2025).

The paper reports that these fine-tuned results are at par with prior state-of-the-art systems and competitive with strong supervised models such as KGFI, COFFTEA, and the robustness-focused system from Devasier et al. A plausible implication is that the main contribution is not only another high-performing frame identifier, but a reframing of strong performance itself as diagnostic evidence for internalized frame-semantic structure (Chundru et al., 23 Sep 2025).

4. Out-of-domain transfer across domain shift and input-format shift

The paper evaluates the FN 1.7 fine-tuned model on two out-of-domain benchmarks chosen to stress different kinds of generalization. YAGS is a domain-shift benchmark based on Yahoo! Answers and includes difficult cases such as unknown targets and unlinked targets. Artifacts contains 938 physical objects annotated with FrameNet frames representing prototypical function, shifting the problem from sentence-level disambiguation to object/function reasoning (Chundru et al., 23 Sep 2025).

The reported accuracies are as follows.

Benchmark Zero-shot Llama-3.1-8B QA fine-tuned
YAGS 65.4 80.7
Artifacts 25.6 49.6

These results show that fine-tuning improves not only in-domain accuracy but also transfer. On YAGS, performance rises from 65.4 to 80.7. On Artifacts, where the task departs more sharply from ordinary sentence-level frame disambiguation, it rises from 25.6 to 49.6. The paper compares the YAGS result to FIDO, which scores 70.5, and uses that comparison to argue that task-specific training substantially improves generalization across both domain shift and input-format shift (Chundru et al., 23 Sep 2025).

The out-of-domain results also sharpen the interpretation of the in-domain findings. If the model were only exploiting narrow lexical memorization from FrameNet examples, the Artifacts transfer would be difficult to explain. The observed gains therefore suggest some portability of the learned representation beyond the exact annotation format used in FrameNet, even though the absolute numbers indicate that such transfer remains incomplete (Chundru et al., 23 Sep 2025).

5. Generated frame definitions as a diagnostic of latent frame knowledge

A distinctive component of the paper is its analysis of LLM-generated frame definitions. The diagnostic is intentionally strict: the model is prompted to generate definitions using only the frame name, with no extra lexical information. The generated definitions are then substituted for gold FrameNet definitions in the Direct-QA setup to test whether disambiguation still succeeds (Chundru et al., 23 Sep 2025).

The main result is that performance remains comparable to the setting that uses gold definitions. The paper interprets this as evidence that the generated definitions capture enough of the frame’s meaning to support disambiguation. Qualitative examples show that the model can generate reasonable summaries for frames such as Activity_prepare and Commerce_buy, while also revealing failure cases in which the definitions are too generic or miss FrameNet’s fine-grained role structure, as with Judicial_body and Measure_mass (Chundru et al., 23 Sep 2025).

This diagnostic matters because it tests more than label matching. The paper explicitly motivates it as a way to distinguish internalized frame-semantic structure from simple memorization of frame names or dependence on direct lexical cues. The resulting picture is therefore mixed but informative: the model appears to encode a broad, internalized conceptual organization of frame semantics, yet that organization does not consistently match the precision and role-structure fidelity of expert-authored FrameNet entries (Chundru et al., 23 Sep 2025).

One misconception that this section helps address is the idea that a high-performing frame identifier must merely be retrieving stored labels. The generated-definition results do not prove a full symbolic theory of frame semantics inside the model, but they do indicate functionally useful frame-level abstractions. This suggests a latent representation that is semantically coherent enough for frame identification, even when it falls short of curated lexicographic exactness.

6. Relation to prior frame-semantic parsing research and broader implications

Within frame semantic parsing, prior work has often emphasized explicit knowledge injection, task decomposition, or engineered lexical hints rather than direct probing of latent frame-semantic knowledge. KAF-SPA retrieves frame and role definitions from FrameNet, compresses them into a continuous prompt through a Memory-based Knowledge Extraction Module (MKEM), and injects them into T5-base with a Task-oriented Knowledge Probing Module (TKPM); it reports 92.4 and 93.6 frame-identification accuracy on FrameNet 1.5 and 1.7, with especially strong ambiguous-case results of 86.6 and 89.1 (Zhang et al., 2023). Frame Semantic Transformer casts trigger identification, frame classification, and argument extraction as T5 text-to-text problems, using FrameNet lexical units as inference-time hints and reporting 0.89 test frame identification on the Open Sesame split of FrameNet 1.7 for its T5-base configuration (Chanin, 2023).

Against that background, the contribution of the 2025 study is distinctive. It does not primarily argue that FrameNet knowledge must be injected because the model lacks it. Instead, it argues that Llama-3.1-8B-Instruct can already perform frame identification effectively through prompting, that modest QA fine-tuning can unlock this further, and that definition generation provides additional evidence of internalized frame semantics (Chundru et al., 23 Sep 2025). This suggests a shift in emphasis from explicit symbolic supplementation toward diagnosis of what LLMs already encode.

The broader significance lies in what the study implies for frame-based semantic parsing. If frame identification can be performed at respectable zero-shot and few-shot levels, then LLMs may serve as strong front ends for FrameNet-style pipelines even before heavy supervision. If fine-tuning then brings performance close to supervised systems while preserving reasonable out-of-domain transfer, the boundary between “knowledge-based” and “latent-representation-based” frame parsing becomes less rigid. At the same time, the generated-definition analysis shows that latent knowledge is not equivalent to expert lexical semantics: the models remain less exact than curated FrameNet definitions in fine-grained role structure. The resulting position is therefore neither that LLMs fully replace FrameNet nor that they are merely opaque pattern matchers. Rather, the evidence indicates that they encode substantial frame-semantic information that is already operational for frame identification and can be further activated by task-specific training (Chundru et al., 23 Sep 2025).

Definition Search Book Streamline Icon: https://streamlinehq.com
References (3)

Topic to Video (Beta)

No one has generated a video about this topic yet.

Whiteboard

No one has generated a whiteboard explanation for this topic yet.

Follow Topic

Get notified by email when new papers are published related to FRAME.