ywc1 commited on
Commit
249c08c
·
verified ·
1 Parent(s): b43fd9c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +12 -12
README.md CHANGED
@@ -8,28 +8,30 @@ metrics:
8
  pipeline_tag: translation
9
  ---
10
 
11
- # Model Card for Model ID
12
 
13
- <!-- This model is finetuned to translate academic text from Japanese to English -->
14
 
15
 
16
 
17
  ## Model Details
18
 
19
  ### Model Description
20
- - **Developed by:** Kenneth Zhang and Susie Xu
21
- - **Language(s) (NLP):** [Japanese to English]
22
- - **Finetuned from model [MarianMT]
23
 
24
 
25
  ## Uses
26
 
27
- This model is for translating academic text from Japanese to English.
28
  You can use it through HuggingFace's pipeline by importing it to your environment.
29
  Otherwise, you can use our interface on HuggingFace Spaces at https://huggingface.co/spaces/ywc1/ja-en-trans.
30
  This model is finetuned on sentence-level pairs and does not perform very well for multi-sentence inputs.
31
- If you're looking to translate an entire abstract or paragraph level data, please go to our paragraph level translation model trained from the same datset.
32
- you can find it at ywc1/mbart-finetuned-ja-en-para
 
 
33
 
34
  ```python
35
  from transformers import MarianMTModel, MarianTokenizer
@@ -43,10 +45,8 @@ tokenizer = MarianTokenizer.from_pretrained("ywc1/marian-finetuned-ja-en")
43
  ## Training Details
44
 
45
  ### Training Data
46
-
47
- <!-- This should link to a Dataset Card, perhaps with a short stub of information on what the training data is all about as well as documentation related to data pre-processing or additional filtering. -->
48
-
49
- [More Information Needed]
50
 
51
  ### Training Procedure
52
 
 
8
  pipeline_tag: translation
9
  ---
10
 
11
+ # Model Card for Japanese-English Academic Translator [sentence]
12
 
13
+ [This model is fine-tuned from MarianMT to translate academic text from Japanese to English.]
14
 
15
 
16
 
17
  ## Model Details
18
 
19
  ### Model Description
20
+ - **Developed by:** [Kenneth Zhang and Susie Xu]
21
+ - **Languages:** [Japanese to English]
22
+ - **Finetuned from model:** [MarianMT]
23
 
24
 
25
  ## Uses
26
 
27
+ [This model is for translating academic text from Japanese to English.
28
  You can use it through HuggingFace's pipeline by importing it to your environment.
29
  Otherwise, you can use our interface on HuggingFace Spaces at https://huggingface.co/spaces/ywc1/ja-en-trans.
30
  This model is finetuned on sentence-level pairs and does not perform very well for multi-sentence inputs.
31
+ If you're looking to translate an entire abstract or paragraph-level data, please go to our paragraph level translation model trained from the same datset.
32
+ you can find it at ywc1/mbart-finetuned-ja-en-para.]
33
+
34
+ Example code:
35
 
36
  ```python
37
  from transformers import MarianMTModel, MarianTokenizer
 
45
  ## Training Details
46
 
47
  ### Training Data
48
+ [This model finetunes MarianMT on 300,000 pairs of Japanese-English academic text.
49
+ Marian MT i s]
 
 
50
 
51
  ### Training Procedure
52