smji commited on
Commit
ff20bfd
1 Parent(s): fb3a059

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +5 -5
README.md CHANGED
@@ -15,14 +15,14 @@ tags:
15
 
16
  # Regional bengali text to IPA transcription - byT5-small
17
 
18
- ## A word of caution: the model is constantly being updated! You may see jumps in performance
19
 
20
  This is a fine-tuned version of the [google/byt5-small](https://huggingface.co/google/byt5-small) for the task of generating IPA transcriptions from regional bengali text.
21
  This was done on the dataset of the competition [“ভাষামূল: মুখের ভাষার খোঁজে“](https://www.kaggle.com/competitions/regipa/overview) by Bengali.AI.
22
 
23
- Best scores achieved in the leaderboards:
24
- - **Public score**: 0.01995
25
- - **Private score**: 0.02072
26
 
27
  Supported district tokens:
28
  - Kishoreganj
@@ -61,7 +61,7 @@ pipe = pipeline("text2text-generation", model="smji/ben2ipa-byt5small", device=d
61
 
62
 
63
  """
64
- Texts must be in the format of: <district> <contents>
65
  """
66
  outputs = pipe(texts, max_length=1024, batch_size=batch_size)
67
  ```
 
15
 
16
  # Regional bengali text to IPA transcription - byT5-small
17
 
18
+ ## A word of caution: the model is constantly being updated! You may see jumps in performance!
19
 
20
  This is a fine-tuned version of the [google/byt5-small](https://huggingface.co/google/byt5-small) for the task of generating IPA transcriptions from regional bengali text.
21
  This was done on the dataset of the competition [“ভাষামূল: মুখের ভাষার খোঁজে“](https://www.kaggle.com/competitions/regipa/overview) by Bengali.AI.
22
 
23
+ Scores achieved till now (test scores):
24
+ - **Word error rate (wer)**: 0.01732
25
+ - **Char error rate (cer)**: 0.01491
26
 
27
  Supported district tokens:
28
  - Kishoreganj
 
61
 
62
 
63
  """
64
+ `texts` must be in the format of: <district> <contents>
65
  """
66
  outputs = pipe(texts, max_length=1024, batch_size=batch_size)
67
  ```