wmt_t2t_translate

  • תיאור :

תרגם מערך נתונים על סמך הנתונים מ-statmt.org.

גרסאות קיימות עבור השנים השונות תוך שימוש בשילוב של מספר מקורות נתונים. הבסיס wmt_translate מאפשר לך ליצור תצורה משלך כדי לבחור צמד נתונים/שפות משלך על ידי יצירת tfds.translate.wmt.WmtConfig מותאם אישית.

config = tfds.translate.wmt.WmtConfig(
    version="0.0.1",
    language_pair=("fr", "de"),
    subsets={
        tfds.Split.TRAIN: ["commoncrawl_frde"],
        tfds.Split.VALIDATION: ["euelections_dev2019"],
    },
)
builder = tfds.builder("wmt_translate", config=config)
  • תיאור תצורה : מערך משימות תרגום WMT T2T EnDe.

  • דף הבית : https://github.com/tensorflow/tensor2tensor/blob/master/tensor2tensor/data_generators/translate_ende.py

  • קוד מקור : tfds.translate.WmtT2tTranslate

  • גרסאות :

    • 1.0.0 (ברירת מחדל): אין הערות שחרור.
  • גודל הורדה : 1.61 GiB

  • גודל מערך נתונים : 1.39 GiB

  • הוראות הורדה ידניות : מערך נתונים זה מחייב אותך להוריד את נתוני המקור באופן ידני אל download_config.manual_dir (ברירת המחדל היא ~/tensorflow_datasets/downloads/manual/ ):
    חלק מתצורות ה-wmt כאן, דורשות הורדה ידנית. אנא עיין ב-wmt.py כדי לראות את הנתיב המדויק (ושם הקובץ) שיש להוריד.

  • שמירה אוטומטית במטמון ( תיעוד ): לא

  • פיצולים :

לְפַצֵל דוגמאות
'test' 3,003
'train' 4,592,289
'validation' 3,000
  • מבנה תכונה :
Translation({
    'de': Text(shape=(), dtype=string),
    'en': Text(shape=(), dtype=string),
})
  • תיעוד תכונה :
תכונה מעמד צוּרָה Dtype תיאור
תִרגוּם
דה טֶקסט חוּט
he טֶקסט חוּט
  • ציטוט :
@InProceedings{bojar-EtAl:2014:W14-33,
  author    = {Bojar, Ondrej  and  Buck, Christian  and  Federmann, Christian  and  Haddow, Barry  and  Koehn, Philipp  and  Leveling, Johannes  and  Monz, Christof  and  Pecina, Pavel  and  Post, Matt  and  Saint-Amand, Herve  and  Soricut, Radu  and  Specia, Lucia  and  Tamchyna, Ale
{s} },
  title     = {Findings of the 2014 Workshop on Statistical Machine Translation},
  booktitle = {Proceedings of the Ninth Workshop on Statistical Machine Translation},
  month     = {June},
  year      = {2014},
  address   = {Baltimore, Maryland, USA},
  publisher = {Association for Computational Linguistics},
  pages     = {12--58},
  url       = {http://www.aclweb.org/anthology/W/W14/W14-3302}
}

wmt_t2t_translate/de-en (תצורת ברירת המחדל)