Running the code from a Bash command line console
git clone https://github.com/princetongenizalab/pgp_transliteration.git
cd pgp_transliteration
pyenv virtualenv 3.8 pgp_transliteration
pyenv activate pgp_transliteration
pip install -r global_def/requirements.txt
huggingface-cli login --token <[hugging_face_token](https://huggingface.co/docs/hub/en/security-tokens)>
PYTHONPATH="<local_path_to_cloned_repo>/pgp_transliteration:$PYTHONPATH"
export PYTHONPATH
from run.e2e_pipe import Import, PipelineManager
Please use only one of the following options, and the rest should be commented out (by #):
- by_list_str: A list of strings, while each string is up to 510 chars. Please use text variable that will make it easier.
- by_str: Just one string.
- by_docx_path: Please create a Google Doc file, where every line is a sentence up to 510 chars. Please share this file, and make sure that it is readable for everyone that has the link.
initial_input = Import()
text = [
"והד̇א יוג̇ב אלאסתכ̇ראג̇ אלד̇י לא גני ענה פי אלפראיץ̇ ואלאחכאם",
"ומא כאן בין אלאמה כ̇לאף פיה אצלא והם קאלו בקל",
"וחמר וגזרה שוה וכאנו יתנאט̇רון ויחתג̇ אלואחד",
"עלי צאחבה בחג̇ה מן אלקיאס ויקבלהא ויחתג̇ הד̇א",
"עלי הד̇א באלאחרי ואלאג̇דר ולא ינכרה ופי קול"
]
str_text = " ".join("""
ראובן הד'א אלמזבח והו קולהם לא לעולה
ולא לזבח כי עד ה' ביננו וביניכם. וקאלו
מחר יאמרו בניכם לבנינו לאמר מה לכם
ולה' אלהי ישראל כלומר מה לכם להקריב
קרבנות על מזבחו ונכרים אתם. חלילה לנו
ממנו למרוד בה', תקדירה חלילה לנו וחוץ
ממנו למרוד בה', אי חאשאנא נחן ען ד'לך,
בל אלכ'ארג ענא הו ג'ירנא יפעלה. אז
""".split("\n"))
link = "https://docs.google.com/document/d/19DXvJpUDb5OT8Sj_KnhwUZXbtdlCne4CNMHMhOja6Lw/edit?usp=sharing"
# initial_input.by_list_str(text)
initial_input.by_str(str_text)
# initial_input.by_docx_path(link)
output_format = "by_docx_path"
pm = PipelineManager(initial_input.output(), output_format=output_format)
if output_format == "by_list_str":
print("Your transliteration is ready! Here are the results:")
for sentence in pm.output():
print("JA input: ")
print(sentence[0])
print("Transliterated output: ")
print(sentence[1])
print()
elif output_format == "by_docx_path":
print(f"Your transliteration is ready! Please visit: {pm.output()}")