zionia commited on
Commit
3746080
·
verified ·
1 Parent(s): 435fa1a

update info

Browse files
Files changed (1) hide show
  1. app.py +13 -10
app.py CHANGED
@@ -16,7 +16,7 @@ def translate(inp):
16
  translated_text = tokenizer.decode(translated_tokens[0], skip_special_tokens=True)
17
  return translated_text
18
 
19
- img1, img2, img3 = gr.Columns(3)
20
  with img2:
21
  gr.Image("logo_transparent_small.png", alt="DSFSI Logo", elem_id="logo", label=None)
22
 
@@ -68,19 +68,22 @@ authors = """
68
  """
69
 
70
  citation = """
71
- <div style='text-align: center;'>
72
- <p>
73
- @inproceedings{{dsfsi2024, title={{Northern Sotho to English Translation using M2M100}},
74
- author={{DSFSI Research Team}}, year={{2024}},
75
- url={{https://huggingface.co/dsfsi/nso-en-m2m100-gov}}
76
- }}
77
- </p>
78
- </div>
 
 
 
79
  """
80
 
81
  doi = """
82
  <div style='text-align: center;'>
83
- DOI: <a href="https://doi.org/10.1234/dsfsi.2024.001" target="_blank">10.1234/dsfsi.2024.001</a>
84
  </div>
85
  """
86
 
 
16
  translated_text = tokenizer.decode(translated_tokens[0], skip_special_tokens=True)
17
  return translated_text
18
 
19
+ img1, img2, img3 = gr.Column(3)
20
  with img2:
21
  gr.Image("logo_transparent_small.png", alt="DSFSI Logo", elem_id="logo", label=None)
22
 
 
68
  """
69
 
70
  citation = """
71
+ @inproceedings{lastrucci-etal-2023-preparing,
72
+ title = "Preparing the Vuk{'}uzenzele and {ZA}-gov-multilingual {S}outh {A}frican multilingual corpora",
73
+ author = "Richard Lastrucci and Isheanesu Dzingirai and Jenalea Rajab and Andani Madodonga and Matimba Shingange and Daniel Njini and Vukosi Marivate",
74
+ booktitle = "Proceedings of the Fourth workshop on Resources for African Indigenous Languages (RAIL 2023)",
75
+ month = may,
76
+ year = "2023",
77
+ address = "Dubrovnik, Croatia",
78
+ publisher = "Association for Computational Linguistics",
79
+ url = "https://aclanthology.org/2023.rail-1.3",
80
+ pages = "18--25"
81
+ }
82
  """
83
 
84
  doi = """
85
  <div style='text-align: center;'>
86
+ DOI: <a href="https://doi.org/10.48550/arXiv.2303.03750" target="_blank">10.48550/arXiv.2303.03750</a>
87
  </div>
88
  """
89