suayptalha commited on
Commit
0596bc8
·
verified ·
1 Parent(s): 3e24a1c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +29 -3
README.md CHANGED
@@ -1,3 +1,29 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ datasets:
4
+ - agentlans/high-quality-english-sentences
5
+ language:
6
+ - en
7
+ base_model:
8
+ - google-t5/t5-base
9
+ pipeline_tag: text2text-generation
10
+ library_name: transformers
11
+ ---
12
+
13
+ This model is for typos in texts and it outputs corrected texts.
14
+
15
+ Example:
16
+
17
+ Text with Typos: **Whathvhr wh call owr carhaivhrs - doctors, nwrsh practitionhrs, clinicians, - wh nhhd thhm not only to carh, wh nhhd thhm to uh aulh to providh thh riaht valwh.**
18
+
19
+ Corrected Text: **Whatever we call our caregivers - doctors, nurse practitioners, clinicians, - we need them not only to care, we need them to be able to provide the right value.**
20
+
21
+
22
+ Example Usage:
23
+ ```py
24
+ #Load the model and tokenizer
25
+ text = "" #Text with typos here!
26
+ inputs = tokenizer(cipher_text, return_tensors="pt", padding=True, truncation=True, max_length=256).to(device)
27
+ outputs = model.generate(inputs["input_ids"], max_length=256)
28
+ corrected_text = tokenizer.decode(outputs[0], skip_special_tokens=True)
29
+ ```