461bf6fd40
CI / lint (3.11) (push) Has been cancelled
CI / lint (3.12) (push) Has been cancelled
CI / lint (3.13) (push) Has been cancelled
CI / shellcheck (push) Has been cancelled
CI / shfmt (push) Has been cancelled
CI / setup (3.11) (push) Has been cancelled
CI / setup (3.12) (push) Has been cancelled
CI / setup (3.13) (push) Has been cancelled
CI / check-licenses (3.12) (push) Has been cancelled
CI / test_unit (3.11) (push) Has been cancelled
CI / test_unit (3.12) (push) Has been cancelled
CI / test_unit (3.13) (push) Has been cancelled
CI / test_unit_no_extras (3.11) (push) Has been cancelled
CI / test_unit_no_extras (3.12) (push) Has been cancelled
CI / test_json_to_html (3.12) (push) Has been cancelled
CI / test_unit_no_extras (3.13) (push) Has been cancelled
CI / test_unit_dependency_extras (csv, 3.12, --extra csv) (push) Has been cancelled
CI / test_unit_dependency_extras (xlsx, 3.11, --extra xlsx) (push) Has been cancelled
CI / test_unit_dependency_extras (xlsx, 3.12, --extra xlsx) (push) Has been cancelled
CI / test_unit_dependency_extras (csv, 3.11, --extra csv) (push) Has been cancelled
CI / test_unit_dependency_extras (csv, 3.13, --extra csv) (push) Has been cancelled
CI / test_unit_dependency_extras (docx, 3.11, --extra docx) (push) Has been cancelled
CI / test_unit_dependency_extras (docx, 3.12, --extra docx) (push) Has been cancelled
CI / test_unit_dependency_extras (docx, 3.13, --extra docx) (push) Has been cancelled
CI / test_unit_dependency_extras (markdown, 3.11, --extra md) (push) Has been cancelled
CI / test_unit_dependency_extras (markdown, 3.12, --extra md) (push) Has been cancelled
CI / test_unit_dependency_extras (markdown, 3.13, --extra md) (push) Has been cancelled
CI / test_unit_dependency_extras (odt, 3.11, --extra odt) (push) Has been cancelled
CI / test_unit_dependency_extras (odt, 3.12, --extra odt) (push) Has been cancelled
CI / test_unit_dependency_extras (odt, 3.13, --extra odt) (push) Has been cancelled
CI / test_unit_dependency_extras (pdf-image, 3.11, --extra pdf --extra image --extra paddleocr) (push) Has been cancelled
CI / test_unit_dependency_extras (pdf-image, 3.12, --extra pdf --extra image --extra paddleocr) (push) Has been cancelled
CI / test_unit_dependency_extras (pdf-image, 3.13, --extra pdf --extra image --extra paddleocr) (push) Has been cancelled
CI / test_unit_dependency_extras (pptx, 3.11, --extra pptx) (push) Has been cancelled
CI / test_unit_dependency_extras (pptx, 3.12, --extra pptx) (push) Has been cancelled
CI / test_unit_dependency_extras (pptx, 3.13, --extra pptx) (push) Has been cancelled
CI / test_unit_dependency_extras (pypandoc, 3.11, --extra epub --extra org --extra rtf --extra rst) (push) Has been cancelled
CI / test_unit_dependency_extras (pypandoc, 3.12, --extra epub --extra org --extra rtf --extra rst) (push) Has been cancelled
CI / test_unit_dependency_extras (pypandoc, 3.13, --extra epub --extra org --extra rtf --extra rst) (push) Has been cancelled
Build And Push Docker Image / set-short-sha (push) Has been cancelled
Partition Benchmark / setup (push) Has been cancelled
Partition Benchmark / Measure and compare partition() runtime (push) Has been cancelled
CI / test_unit_dependency_extras (xlsx, 3.13, --extra xlsx) (push) Has been cancelled
CI / test_ingest_src (3.12) (push) Has been cancelled
CI / test_json_to_markdown (3.12) (push) Has been cancelled
CI / changelog (push) Has been cancelled
CI / test_dockerfile (push) Has been cancelled
CodeQL / Analyze (python) (push) Has been cancelled
Build And Push Docker Image / build-images (linux/amd64, opensource-linux-8core) (push) Has been cancelled
Build And Push Docker Image / build-images (linux/arm64, ubuntu-24.04-arm) (push) Has been cancelled
Build And Push Docker Image / publish-images (push) Has been cancelled
88 lines
3.2 KiB
Python
88 lines
3.2 KiB
Python
import warnings
|
|
from typing import List, Optional
|
|
|
|
import langdetect
|
|
from transformers import MarianMTModel, MarianTokenizer
|
|
|
|
from unstructured.nlp.tokenize import sent_tokenize
|
|
from unstructured.staging.huggingface import chunk_by_attention_window
|
|
|
|
|
|
def _get_opus_mt_model_name(source_lang: str, target_lang: str):
|
|
"""Constructs the name of the MarianMT machine translation model based on the
|
|
source and target language."""
|
|
return f"Helsinki-NLP/opus-mt-{source_lang}-{target_lang}"
|
|
|
|
|
|
def _validate_language_code(language_code: str):
|
|
if not isinstance(language_code, str) or len(language_code) != 2:
|
|
raise ValueError(
|
|
f"Invalid language code: {language_code}. Language codes must be two letter strings.",
|
|
)
|
|
|
|
|
|
def translate_text(text: str, source_lang: Optional[str] = None, target_lang: str = "en") -> str:
|
|
"""Translates the foreign language text. If the source language is not specified, the
|
|
function will attempt to detect it using langdetect.
|
|
|
|
Parameters
|
|
----------
|
|
text: str
|
|
The text to translate
|
|
target_lang: str
|
|
The two letter language code for the target langague. Defaults to "en".
|
|
source_lang: Optional[str]
|
|
The two letter language code for the language of the input text. If source_lang is
|
|
not provided, the function will try to detect it.
|
|
"""
|
|
if text.strip() == "":
|
|
return text
|
|
|
|
_source_lang: str = source_lang if source_lang is not None else langdetect.detect(text)
|
|
# NOTE(robinson) - Chinese gets detected with codes zh-cn, zh-tw, zh-hk for various
|
|
# Chinese variants. We normalizes these because there is a single model for Chinese
|
|
# machine translation
|
|
if _source_lang.startswith("zh"):
|
|
_source_lang = "zh"
|
|
|
|
_validate_language_code(target_lang)
|
|
_validate_language_code(_source_lang)
|
|
|
|
if target_lang == _source_lang:
|
|
return text
|
|
|
|
model_name = _get_opus_mt_model_name(_source_lang, target_lang)
|
|
print(f"Using model: {model_name}")
|
|
|
|
try:
|
|
tokenizer = MarianTokenizer.from_pretrained(model_name)
|
|
model = MarianMTModel.from_pretrained(model_name)
|
|
except OSError:
|
|
raise ValueError(
|
|
f"Transformers could not find the translation model {model_name}. "
|
|
"The requested source/target language combo is not supported.",
|
|
)
|
|
|
|
chunks: List[str] = chunk_by_attention_window(text, tokenizer, split_function=sent_tokenize)
|
|
|
|
translated_chunks: List[str] = []
|
|
for chunk in chunks:
|
|
translated_chunks.append(_translate_text(text, model, tokenizer))
|
|
|
|
return " ".join(translated_chunks)
|
|
|
|
|
|
def _translate_text(text, model, tokenizer):
|
|
"""Translates text using the specified model and tokenizer."""
|
|
# NOTE(robinson) - Suppresses the HuggingFace UserWarning resulting from the "max_length"
|
|
# key in the MarianMT config. The warning states that "max_length" will be deprecated
|
|
# in transformers v5
|
|
with warnings.catch_warnings():
|
|
warnings.simplefilter("ignore")
|
|
translated = model.generate(
|
|
**tokenizer([text], return_tensors="pt", padding=True, truncation=True),
|
|
)
|
|
return [tokenizer.decode(t, max_new_tokens=512, skip_special_tokens=True) for t in translated][
|
|
0
|
|
]
|