atasoglu commited on
Commit
0998e4e
1 Parent(s): 9fb1f71

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +16 -2
README.md CHANGED
@@ -6,14 +6,28 @@ tags:
6
  - feature-extraction
7
  - sentence-similarity
8
  - transformers
9
-
 
 
 
 
 
 
10
  ---
11
 
12
  # atasoglu/roberta-small-turkish-clean-uncased-nli-stsb-tr
13
 
14
  This is a [sentence-transformers](https://www.SBERT.net) model: It maps sentences & paragraphs to a 512 dimensional dense vector space and can be used for tasks like clustering or semantic search.
15
 
16
- <!--- Describe your model here -->
 
 
 
 
 
 
 
 
17
 
18
  ## Usage (Sentence-Transformers)
19
 
 
6
  - feature-extraction
7
  - sentence-similarity
8
  - transformers
9
+ license: mit
10
+ datasets:
11
+ - nli_tr
12
+ - emrecan/stsb-mt-turkish
13
+ language:
14
+ - tr
15
+ base_model: burakaytan/roberta-small-turkish-clean-uncased
16
  ---
17
 
18
  # atasoglu/roberta-small-turkish-clean-uncased-nli-stsb-tr
19
 
20
  This is a [sentence-transformers](https://www.SBERT.net) model: It maps sentences & paragraphs to a 512 dimensional dense vector space and can be used for tasks like clustering or semantic search.
21
 
22
+ This model was adapted from [burakaytan/roberta-small-turkish-clean-uncased](https://huggingface.co/burakaytan/roberta-small-turkish-clean-uncased) and fine-tuned on these datasets:
23
+ - [nli_tr](https://huggingface.co/datasets/nli_tr)
24
+ - [emrecan/stsb-mt-turkish](https://huggingface.co/datasets/emrecan/stsb-mt-turkish)
25
+
26
+ **All texts were manually lowercased** as shown below:
27
+
28
+ ```python
29
+ text.replace("I", "ı").lower()
30
+ ```
31
 
32
  ## Usage (Sentence-Transformers)
33