Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -3,9 +3,9 @@ import spacy
|
|
3 |
from spacy import displacy
|
4 |
from spacy.tokens import Span
|
5 |
from random import randint
|
6 |
-
from fastcoref import
|
7 |
|
8 |
-
model =
|
9 |
nlp = spacy.blank("en")
|
10 |
|
11 |
default = "Lionel Messi has won a record seven Ballon d'Or awards. He signed for Paris Saint-Germain in August 2021. “I would like to thank my family” said the Argentinian footballer. Messi holds the records for most goals in La Liga. Paris Saint-Germain hopes he will do the same in Ligue 1."
|
|
|
3 |
from spacy import displacy
|
4 |
from spacy.tokens import Span
|
5 |
from random import randint
|
6 |
+
from fastcoref import FCoref
|
7 |
|
8 |
+
model = FCoref()
|
9 |
nlp = spacy.blank("en")
|
10 |
|
11 |
default = "Lionel Messi has won a record seven Ballon d'Or awards. He signed for Paris Saint-Germain in August 2021. “I would like to thank my family” said the Argentinian footballer. Messi holds the records for most goals in La Liga. Paris Saint-Germain hopes he will do the same in Ligue 1."
|