tkesgin commited on
Commit
bbb0158
1 Parent(s): 6e570a2

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -10,12 +10,12 @@ This is a Turkish Tiny uncased BERT model, developed to fill the gap for small-s
10
 
11
  #### ⚠ Uncased use requires manual lowercase conversion
12
 
13
- Please note that due to a [known issue](https://github.com/huggingface/transformers/issues/6680) with the tokenizer, the `do_lower_case = True` flag should not be used with the tokenizer. Instead, convert your text to lower case as follows:
14
  ```python
15
  text.replace("I", "ı").lower()
16
  ```
17
 
18
- Please be aware that this model may exhibit biased predictions as it was trained primarily on crawled data, which inherently can contain various biases.
19
 
20
  Other relevant information can be found in the [paper](https://arxiv.org/abs/2307.14134).
21
 
 
10
 
11
  #### ⚠ Uncased use requires manual lowercase conversion
12
 
13
+ Note that due to a [known issue](https://github.com/huggingface/transformers/issues/6680) with the tokenizer, the `do_lower_case = True` flag should **NOT** be used with the tokenizer. Instead, convert your text to lower case as follows:
14
  ```python
15
  text.replace("I", "ı").lower()
16
  ```
17
 
18
+ Be aware that this model may exhibit biased predictions as it was trained primarily on crawled data, which inherently can contain various biases.
19
 
20
  Other relevant information can be found in the [paper](https://arxiv.org/abs/2307.14134).
21