harshildarji
commited on
Commit
•
ae7f511
1
Parent(s):
0bee41d
Update README.md
Browse files
README.md
CHANGED
@@ -14,7 +14,7 @@ widget:
|
|
14 |
```python
|
15 |
from transformers import pipeline
|
16 |
|
17 |
-
pipe = pipeline("text-classification", model="
|
18 |
|
19 |
example = "We store your basic account information, including your name, username, and email address until you ask us to delete them."
|
20 |
results = pipe(example)
|
|
|
14 |
```python
|
15 |
from transformers import pipeline
|
16 |
|
17 |
+
pipe = pipeline("text-classification", model="PaDaS-Lab/privacy-policy-relation-extraction", return_all_scores=True)
|
18 |
|
19 |
example = "We store your basic account information, including your name, username, and email address until you ask us to delete them."
|
20 |
results = pipe(example)
|