Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -1,5 +1,8 @@
|
|
1 |
from parrot import Parrot
|
2 |
import torch
|
|
|
|
|
|
|
3 |
|
4 |
parrot = Parrot(model_tag="prithivida/parrot_paraphraser_on_T5", use_gpu=False)
|
5 |
|
|
|
1 |
from parrot import Parrot
|
2 |
import torch
|
3 |
+
import warnings
|
4 |
+
|
5 |
+
warnings.filterwarnings("ignore")
|
6 |
|
7 |
parrot = Parrot(model_tag="prithivida/parrot_paraphraser_on_T5", use_gpu=False)
|
8 |
|