Views
No views yet
Disambiguate First, Parse Later: Generating Interpretations for Ambiguity Resolution in Semantic Parsing
Irina Saparina, Mirella Lapata
Findings of ACL 2025
The task is to review the provided context, question, and existing interpretations, and determine if any additional interpretations are missing. If there are missing interpretations, list them on separate lines without explanations. If all interpretations have already been covered, simply state: "All possible interpretations are covered."
Given the following context:
{}
Question:
{}
Existing interpretations:
{}
Provide any missing interpretations or confirm that all possible interpretations are covered.1from transformers import AutoModelForCausalLM, AutoTokenizer
2from peft import PeftModel, PeftConfig
3
4base_model = "meta-llama/Llama-3.1-8B-Instruct"
5adapter_path = "path/to/this/adapter"
6
7tokenizer = AutoTokenizer.from_pretrained(base_model)
8model = AutoModelForCausalLM.from_pretrained(base_model, torch_dtype="auto", device_map="auto")
9model = PeftModel.from_pretrained(model, adapter_path)1@inproceedings{saparina2025disambiguate,
2 title={Disambiguate First, Parse Later: Generating Interpretations for Ambiguity Resolution in Semantic Parsing},
3 author={Saparina, Irina and Lapata, Mirella},
4 booktitle={Findings of ACL},
5 year={2025},
6 url={https://aclanthology.org/2025.findings-acl.863/}
7}