ZakaryaRouzki
commited on
Commit
·
a8b3b46
1
Parent(s):
67a3e4b
Update README.md
Browse files
README.md
CHANGED
@@ -10,8 +10,14 @@ datasets:
|
|
10 |
- orange_sum
|
11 |
- mlsum
|
12 |
---
|
13 |
-
|
14 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
15 |
T5 model fine-tuned for punctuation restoration.
|
16 |
Model currently supports only French Language. More language supports will be added later using mT5.
|
17 |
|
@@ -25,25 +31,27 @@ more info will be added later.
|
|
25 |
|
26 |
---------------------------
|
27 |
## 🚀 Usage
|
28 |
-
**
|
29 |
-
1.
|
30 |
```bash
|
31 |
pip install TextPunctuator
|
32 |
```
|
33 |
-
2.
|
34 |
```python
|
35 |
-
|
36 |
from Punctuator import TextPunctuator
|
37 |
-
|
38 |
punctuator = TextPunctuator(use_gpu=False)
|
39 |
-
|
40 |
-
text = "Sur la base de ces échanges Blake Lemoine a donc jugé que le système avait atteint
|
41 |
-
|
|
|
|
|
42 |
text_punctuated = punctuator.punctuate(text, lang='fr')
|
43 |
-
|
44 |
text_punctuated
|
45 |
-
#
|
46 |
-
|
|
|
|
|
|
|
47 |
```
|
48 |
|
49 |
-----------------------------------------------
|
|
|
10 |
- orange_sum
|
11 |
- mlsum
|
12 |
---
|
13 |
+
<style>
|
14 |
+
code {
|
15 |
+
white-space : pre-wrap !important;
|
16 |
+
word-break: break-word;
|
17 |
+
}
|
18 |
+
</style>
|
19 |
+
|
20 |
+
# 🚀 Text Punctuator Based on Transformers model T5.
|
21 |
T5 model fine-tuned for punctuation restoration.
|
22 |
Model currently supports only French Language. More language supports will be added later using mT5.
|
23 |
|
|
|
31 |
|
32 |
---------------------------
|
33 |
## 🚀 Usage
|
34 |
+
**TextPunctuator as a wrapper of the model.**
|
35 |
+
1. Install the package.
|
36 |
```bash
|
37 |
pip install TextPunctuator
|
38 |
```
|
39 |
+
2. Simple example
|
40 |
```python
|
|
|
41 |
from Punctuator import TextPunctuator
|
|
|
42 |
punctuator = TextPunctuator(use_gpu=False)
|
43 |
+
# text input
|
44 |
+
text = "Sur la base de ces échanges Blake Lemoine a donc jugé que le système avait atteint \
|
45 |
+
un niveau de conscience lui permettant d'être sensible Ce dernier a ensuite envoyé \
|
46 |
+
par email un rapport sur la sensibilité supposée de LaMDA à deux cents employés de \
|
47 |
+
Google Très vite les dirigeants de l’entreprise ont rejeté les allégations"
|
48 |
text_punctuated = punctuator.punctuate(text, lang='fr')
|
|
|
49 |
text_punctuated
|
50 |
+
# output :
|
51 |
+
""" Sur la base de ces échanges, Blake Lemoine a donc jugé que le système avait atteint un niveau de
|
52 |
+
conscience lui permettant d’être sensible. Ce dernier a ensuite envoyé par email un rapport sur
|
53 |
+
la sensibilité supposée de LaMDA à deux cents employés de Google. Très vite, les dirigeants de
|
54 |
+
l’entreprise ont rejeté les allégations. """
|
55 |
```
|
56 |
|
57 |
-----------------------------------------------
|