Prompt generation for Fragment-Shot and Pivoted Fragment-Shot translation using LLMs
Project description
🧩 FragmentShot Retriever
A Python package for retrieving exemplary translations for text based on fragments from parallel corpora.
Features
- Fragment extraction from source and target texts
- Configurable maximum fragment size
- Option to enable or disable fragment overlaps
- Easy integration for retrieval workflows
Installation
You can install this package locally:
pip install fragmentshot
Or clone the repo and install in editable mode:
git clone https://github.com/schtailmuel/fragmentshot.git
cd fragmentshot
pip install -e .
Usage
from fragmentshot.retriever import FragmentShotsRetriever
src_texts = [
"this is a sample source sentence.",
"another example source sentence."
]
tgt_texts = [
"dies ist ein Beispiel im Zieltext.",
"noch ein Beispiel."
]
retriever = FragmentShotsRetriever(src_texts, tgt_texts, max_fragment_size=5, overlaps=False)
result = retriever.get_fragment_shots("The source of this is unknown.")
print(result)
Result
{
"shots": [
{
"index": 1,
"fragment": "source",
"examples": [
{
"src_text": "this is a sample source sentence.",
"tgt_text": "dies ist ein Beispiel im Zieltext."
},
{
"src_text": "another example source sentence.",
"tgt_text": "noch ein Beispiel."
}
]
},
{
"index": 3,
"fragment": "this is",
"examples": [
{
"src_text": "this is a sample source sentence.",
"tgt_text": "dies ist ein Beispiel im Zieltext."
}
]
}
],
"num_words": 6,
"unknown": [
"The",
"of",
"unknown"
]
}
Testing
Run unit tests with:
python -m unittest discover tests
License
This project is licensed under the Creative Commons Attribution-ShareAlike 4.0 International License.
Created by Samuel Frontull
Citation
If you use this code in your research, please cite our paper (LREC 2026):
@inproceedings{frontull-etal-2026-every,
title = {Every Word Presented in Context: Syntactic Coverage as Objective for Low-Resource Machine Translation with Large Language Models},
author = {Frontull, Samuel and Ströhle, Thomas},
booktitle = {Proceedings of the Fifteenth Language Resources and Evaluation Conference (LREC 2026)},
month = {May},
year = {2026},
pages = {8824--8837},
address = {Palma, Mallorca, Spain},
publisher = {European Language Resources Association (ELRA)},
editor = {Piperidis, Stelios and Bel, Núria and van den Heuvel, Henk and Ide, Nancy and Krek, Simon and Toral, Antonio},
doi = {10.63317/5jpokiam9tjt},
abstract = {Large Language Models (LLMs) have demonstrated strong capabilities in multilingual machine translation. However, they underperform for low-resource languages, indicating the need for more explicit instructional guidance. In this work, we introduce Fragment-Shot Prompting, a novel few-shot prompting method that aims to retrieve examples for every word occurring in the sentence to be translated, illustrating their use and meaning in context. We evaluate our method on translation between Italian, Ladin (Val Badia) and Ladin (Gherdëina) and compare its performance with zero-shot prompting, random few-shot prompting, as well as established lexical and semantic retrieval strategies. We conduct these experiments using state-of-the-art LLMs, including GPT-3.5, GPT-4o, o1-mini, LlaMA-3.3, and DeepSeek-R1. Our results demonstrate that LLMs can extract substantial value from limited data when translating from a low- to the high-resource language. However, this does not apply to translations into the low-resource languages, where the prompting method plays a much more important role. In particular, our method consistently delivers the best results and enables significant gains. Even though translation performance into Ladin remains limited with the available resources, our results highlight the importance of syntactic coverage for improving translation accuracy and ariant-specific adaptation in low-resource scenarios.}
}
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file fragmentshot-1.0.0.tar.gz.
File metadata
- Download URL: fragmentshot-1.0.0.tar.gz
- Upload date:
- Size: 5.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e1361647470e566b6cfa715215108fcaaf084d931c8ad91722cb2618ac3004b0
|
|
| MD5 |
20f737d9bce3758388445e6956d7b43f
|
|
| BLAKE2b-256 |
241da5340e0a0333487771c1f7c30bc9fa4cda5b564a30847e99bf5ec635e225
|
File details
Details for the file fragmentshot-1.0.0-py3-none-any.whl.
File metadata
- Download URL: fragmentshot-1.0.0-py3-none-any.whl
- Upload date:
- Size: 5.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a1b0b664b11e422eaef0aa31401c8e93f7598372bfde1ec70c3ce34141042695
|
|
| MD5 |
4b1368c55b1be8d07c8c0054b02f04b5
|
|
| BLAKE2b-256 |
7c4bcf19cb08c1f31e357bb291c1ac5e85d01aa5f40d3e82c6e88d8a6a0adbd6
|