update requirements
Browse files- app.py +0 -2
- requirements.txt +95 -83
app.py
CHANGED
@@ -13,12 +13,10 @@ from wordcloud import STOPWORDS
|
|
13 |
|
14 |
from gensim.corpora import Dictionary
|
15 |
from gensim.models.coherencemodel import CoherenceModel
|
16 |
-
import matplotlib.pyplot as plt
|
17 |
from pprint import pprint
|
18 |
|
19 |
import numpy as np
|
20 |
import tqdm
|
21 |
-
import pyLDAvis.gensim
|
22 |
|
23 |
from gensim.parsing.preprocessing import preprocess_string, strip_punctuation, strip_numeric
|
24 |
|
|
|
13 |
|
14 |
from gensim.corpora import Dictionary
|
15 |
from gensim.models.coherencemodel import CoherenceModel
|
|
|
16 |
from pprint import pprint
|
17 |
|
18 |
import numpy as np
|
19 |
import tqdm
|
|
|
20 |
|
21 |
from gensim.parsing.preprocessing import preprocess_string, strip_punctuation, strip_numeric
|
22 |
|
requirements.txt
CHANGED
@@ -1,86 +1,98 @@
|
|
1 |
-
en_core_web_lg @ https://github.com/explosion/spacy-models/releases/download/en_core_web_lg-3.5.0/en_core_web_lg-3.5.0-py3-none-any.whl
|
2 |
-
appdirs==1.4.4
|
3 |
-
attrs==23.1.0
|
4 |
-
bertopic==0.15.0
|
5 |
-
build==1.0.3
|
6 |
-
debugpy==1.6.6
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
emoji==1.7.0
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
google-cloud-bigquery==3.10.0
|
17 |
-
google-cloud-bigquery-connection==1.12.1
|
18 |
-
google-cloud-bigquery-storage==2.22.0
|
19 |
-
google-cloud-core==2.3.3
|
20 |
-
google-cloud-datastore==2.15.2
|
21 |
-
google-cloud-firestore==2.11.1
|
22 |
-
google-cloud-functions==1.13.3
|
23 |
-
google-cloud-language==2.9.1
|
24 |
-
google-cloud-storage==2.8.0
|
25 |
-
google-cloud-translate==3.11.3
|
26 |
googletrans==3.1.0a0
|
27 |
-
|
28 |
-
|
29 |
-
imbalanced-learn==0.10.1
|
30 |
-
ipykernel==5.5.6
|
31 |
-
jupyter-client==6.1.12
|
32 |
-
jupyter-console==6.1.0
|
33 |
-
jupyter_core==5.4.0
|
34 |
-
jupyter-server==1.24.0
|
35 |
-
jupyterlab-pygments==0.2.2
|
36 |
-
jupyterlab-widgets==3.0.9
|
37 |
-
langcodes==3.3.0
|
38 |
-
langdetect==1.0.9
|
39 |
-
matplotlib==3.7.1
|
40 |
-
matplotlib-inline==0.1.6
|
41 |
-
matplotlib-venn==0.11.9
|
42 |
-
nest-asyncio==1.5.8
|
43 |
-
numpy==1.23.5
|
44 |
-
oauth2client==4.1.3
|
45 |
-
oauthlib==3.2.2
|
46 |
-
pandas==2.1.1
|
47 |
-
pandas-datareader==0.10.0
|
48 |
-
pandas-gbq==0.17.9
|
49 |
-
pandas-stubs==1.5.3.230304
|
50 |
-
plotly==4.14.3
|
51 |
-
psycopg2==2.9.9
|
52 |
-
pyLDAvis==3.4.1
|
53 |
-
python-apt==0.0.0
|
54 |
-
python-box==7.1.1
|
55 |
-
python-dateutil==2.8.2
|
56 |
-
python-louvain==0.16
|
57 |
-
python-slugify==8.0.1
|
58 |
-
python-utils==3.8.1
|
59 |
-
pytorch_revgrad==0.2.0
|
60 |
-
requirements-parser==0.5.0
|
61 |
-
scikit-image==0.19.3
|
62 |
scikit-learn==1.1.0
|
63 |
-
sentence-transformers==2.2.2
|
64 |
-
sentencepiece==0.1.99
|
65 |
-
sklearn-pandas==2.2.0
|
66 |
-
spacy==3.6.1
|
67 |
-
spacy-legacy==3.0.12
|
68 |
-
spacy-loggers==1.0.5
|
69 |
-
tensorboard==2.13.0
|
70 |
-
tensorboard-data-server==0.7.1
|
71 |
-
tensorflow==2.13.0
|
72 |
-
tensorflow-datasets==4.9.3
|
73 |
-
tensorflow-estimator==2.13.0
|
74 |
-
tensorflow-gcs-config==2.13.0
|
75 |
-
tensorflow-hub==0.15.0
|
76 |
-
tensorflow-io-gcs-filesystem==0.34.0
|
77 |
-
tensorflow-metadata==1.14.0
|
78 |
-
tensorflow-probability==0.20.1
|
79 |
-
tensorstore==0.1.45
|
80 |
-
tokenizers==0.14.1
|
81 |
-
torch==2.1.0
|
82 |
-
tqdm==4.66.1
|
83 |
-
transformers==4.34.0
|
84 |
-
tweepy==4.13.0
|
85 |
-
umap-learn==0.5.4
|
86 |
-
wordcloud==1.9.2
|
|
|
1 |
+
# en_core_web_lg @ https://github.com/explosion/spacy-models/releases/download/en_core_web_lg-3.5.0/en_core_web_lg-3.5.0-py3-none-any.whl
|
2 |
+
# appdirs==1.4.4
|
3 |
+
# attrs==23.1.0
|
4 |
+
# bertopic==0.15.0
|
5 |
+
# build==1.0.3
|
6 |
+
# debugpy==1.6.6
|
7 |
+
# emoji==1.7.0
|
8 |
+
# flair==0.12.2
|
9 |
+
# gensim==4.3.2
|
10 |
+
# google==2.0.3
|
11 |
+
# google-api-core==2.11.1
|
12 |
+
# google-api-python-client==2.84.0
|
13 |
+
# google-auth==2.17.3
|
14 |
+
# google-auth-httplib2==0.1.1
|
15 |
+
# google-auth-oauthlib==1.0.0
|
16 |
+
# google-cloud-bigquery==3.10.0
|
17 |
+
# google-cloud-bigquery-connection==1.12.1
|
18 |
+
# google-cloud-bigquery-storage==2.22.0
|
19 |
+
# google-cloud-core==2.3.3
|
20 |
+
# google-cloud-datastore==2.15.2
|
21 |
+
# google-cloud-firestore==2.11.1
|
22 |
+
# google-cloud-functions==1.13.3
|
23 |
+
# google-cloud-language==2.9.1
|
24 |
+
# google-cloud-storage==2.8.0
|
25 |
+
# google-cloud-translate==3.11.3
|
26 |
+
# googletrans==3.1.0a0
|
27 |
+
# hdbscan==0.8.33
|
28 |
+
# huggingface-hub==0.17.3
|
29 |
+
# imbalanced-learn==0.10.1
|
30 |
+
# ipykernel==5.5.6
|
31 |
+
# jupyter-client==6.1.12
|
32 |
+
# jupyter-console==6.1.0
|
33 |
+
# jupyter_core==5.4.0
|
34 |
+
# jupyter-server==1.24.0
|
35 |
+
# jupyterlab-pygments==0.2.2
|
36 |
+
# jupyterlab-widgets==3.0.9
|
37 |
+
# langcodes==3.3.0
|
38 |
+
# langdetect==1.0.9
|
39 |
+
# nest-asyncio==1.5.8
|
40 |
+
# numpy==1.23.5
|
41 |
+
# oauth2client==4.1.3
|
42 |
+
# oauthlib==3.2.2
|
43 |
+
# pandas==2.1.1
|
44 |
+
# pandas-datareader==0.10.0
|
45 |
+
# pandas-gbq==0.17.9
|
46 |
+
# pandas-stubs==1.5.3.230304
|
47 |
+
# plotly==4.14.3
|
48 |
+
# psycopg2==2.9.9
|
49 |
+
# pyLDAvis==3.4.1
|
50 |
+
# python-apt==0.0.0
|
51 |
+
# python-box==7.1.1
|
52 |
+
# python-dateutil==2.8.2
|
53 |
+
# python-louvain==0.16
|
54 |
+
# python-slugify==8.0.1
|
55 |
+
# python-utils==3.8.1
|
56 |
+
# pytorch_revgrad==0.2.0
|
57 |
+
# requirements-parser==0.5.0
|
58 |
+
# scikit-image==0.19.3
|
59 |
+
# scikit-learn==1.1.0
|
60 |
+
# sentence-transformers==2.2.2
|
61 |
+
# sentencepiece==0.1.99
|
62 |
+
# sklearn-pandas==2.2.0
|
63 |
+
# spacy==3.6.1
|
64 |
+
# spacy-legacy==3.0.12
|
65 |
+
# spacy-loggers==1.0.5
|
66 |
+
# tensorboard==2.13.0
|
67 |
+
# tensorboard-data-server==0.7.1
|
68 |
+
# tensorflow==2.13.0
|
69 |
+
# tensorflow-datasets==4.9.3
|
70 |
+
# tensorflow-estimator==2.13.0
|
71 |
+
# tensorflow-gcs-config==2.13.0
|
72 |
+
# tensorflow-hub==0.15.0
|
73 |
+
# tensorflow-io-gcs-filesystem==0.34.0
|
74 |
+
# tensorflow-metadata==1.14.0
|
75 |
+
# tensorflow-probability==0.20.1
|
76 |
+
# tensorstore==0.1.45
|
77 |
+
# tokenizers==0.14.1
|
78 |
+
# torch==2.1.0
|
79 |
+
# tqdm==4.66.1
|
80 |
+
# transformers==4.34.0
|
81 |
+
# tweepy==4.13.0
|
82 |
+
# umap-learn==0.5.4
|
83 |
+
# wordcloud==1.9.2
|
84 |
+
|
85 |
+
numpy==1.23.5
|
86 |
emoji==1.7.0
|
87 |
+
pandas-profiling==2.*
|
88 |
+
plotly==4.*
|
89 |
+
spacy>=3.0.0,<4.0.0
|
90 |
+
en_core_web_lg @ https://github.com/explosion/spacy-models/releases/download/en_core_web_lg-3.5.0/en_core_web_lg-3.5.0-py3-none-any.whl
|
91 |
+
gensim
|
92 |
+
pandas-profiling==2.*
|
93 |
+
plotly==4.*
|
94 |
+
transformers
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
95 |
googletrans==3.1.0a0
|
96 |
+
sentencepiece
|
97 |
+
flair==0.12.2
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
98 |
scikit-learn==1.1.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|