Update requirements.txt
Browse files- requirements.txt +51 -54
requirements.txt
CHANGED
@@ -1,54 +1,51 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
torch
|
53 |
-
tqdm
|
54 |
-
thinc
|
|
|
1 |
+
# Modelos de spaCy desde Hugging Face
|
2 |
+
# https://huggingface.co/spacy/es_core_news_lg/resolve/main/es_core_news_lg-any-py3-none-any.whl
|
3 |
+
# https://huggingface.co/spacy/en_core_web_lg/resolve/main/en_core_web_lg-any-py3-none-any.whl
|
4 |
+
# https://huggingface.co/spacy/fr_core_news_lg/resolve/main/fr_core_news_lg-any-py3-none-any.whl
|
5 |
+
|
6 |
+
# Enlaces alternativos desde GitHub (comentados)
|
7 |
+
es-core-news-lg @ https://github.com/explosion/spacy-models/releases/download/es_core_news_lg-3.7.0/es_core_news_lg-3.7.0-py3-none-any.whl
|
8 |
+
en-core-web-lg @ https://github.com/explosion/spacy-models/releases/download/en_core_web_lg-3.7.1/en_core_web_lg-3.7.1-py3-none-any.whl
|
9 |
+
fr-core-news-lg @ https://github.com/explosion/spacy-models/releases/download/fr_core_news_lg-3.7.0/fr_core_news_lg-3.7.0-py3-none-any.whl
|
10 |
+
|
11 |
+
# Framework principal
|
12 |
+
gradio
|
13 |
+
|
14 |
+
# Base de datos y autenticaci贸n
|
15 |
+
azure-cosmos
|
16 |
+
azure-identity
|
17 |
+
pymongo[srv]
|
18 |
+
bcrypt
|
19 |
+
certifi
|
20 |
+
|
21 |
+
# Utilidades b谩sicas
|
22 |
+
python-dotenv
|
23 |
+
requests
|
24 |
+
pydantic
|
25 |
+
|
26 |
+
# Procesamiento de documentos
|
27 |
+
antiword
|
28 |
+
docx2txt
|
29 |
+
python-docx
|
30 |
+
PyPDF2
|
31 |
+
odfpy
|
32 |
+
|
33 |
+
# Visualizaci贸n
|
34 |
+
matplotlib
|
35 |
+
plotly
|
36 |
+
seaborn
|
37 |
+
networkx
|
38 |
+
|
39 |
+
# Machine Learning y NLP
|
40 |
+
numpy
|
41 |
+
pandas
|
42 |
+
scipy
|
43 |
+
scikit-learn
|
44 |
+
torch
|
45 |
+
spacy>=3.7.0,<3.8.0
|
46 |
+
transformers
|
47 |
+
sentencepiece
|
48 |
+
thinc
|
49 |
+
|
50 |
+
# Utilidades adicionales
|
51 |
+
tqdm
|
|
|
|
|
|