Commit ·
1963801
1
Parent(s): 785f157
Set spacy model to large in recogniser py file
Browse files
tools/load_spacy_model_custom_recognisers.py
CHANGED
|
@@ -8,7 +8,7 @@ from spacy.cli.download import download
|
|
| 8 |
import re
|
| 9 |
|
| 10 |
# %%
|
| 11 |
-
model_name = "
|
| 12 |
score_threshold = 0.001
|
| 13 |
|
| 14 |
# %% [markdown]
|
|
|
|
| 8 |
import re
|
| 9 |
|
| 10 |
# %%
|
| 11 |
+
model_name = "en_core_web_lg" #"en_core_web_trf"
|
| 12 |
score_threshold = 0.001
|
| 13 |
|
| 14 |
# %% [markdown]
|