OxbridgeEconomics
commited on
Commit
·
a951f21
1
Parent(s):
a46e17d
commit
Browse files- .github/workflows/daily.yml +1 -1
- _requirements.txt +73 -0
- requirements.txt +195 -73
.github/workflows/daily.yml
CHANGED
@@ -30,7 +30,7 @@ jobs:
|
|
30 |
- name: Install dependencies
|
31 |
run: |
|
32 |
python -m pip install --upgrade pip
|
33 |
-
if [ -f requirements.txt ]; then pip install -r
|
34 |
pip uninstall transformers -y
|
35 |
pip install transformers
|
36 |
pip install tensorflow
|
|
|
30 |
- name: Install dependencies
|
31 |
run: |
|
32 |
python -m pip install --upgrade pip
|
33 |
+
if [ -f requirements.txt ]; then pip install -r _requirements.txt; fi
|
34 |
pip uninstall transformers -y
|
35 |
pip install transformers
|
36 |
pip install tensorflow
|
_requirements.txt
ADDED
@@ -0,0 +1,73 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
absl-py==2.1.0
|
2 |
+
astunparse==1.6.3
|
3 |
+
boto3==1.34.57
|
4 |
+
botocore==1.34.57
|
5 |
+
certifi==2024.2.2
|
6 |
+
chardet==3.0.4
|
7 |
+
charset-normalizer==3.3.2
|
8 |
+
colorama==0.4.6
|
9 |
+
cramjam==2.8.3
|
10 |
+
fastparquet==2024.5.0
|
11 |
+
filelock==3.15.4
|
12 |
+
flatbuffers==24.3.25
|
13 |
+
fsspec==2024.6.1
|
14 |
+
gast==0.6.0
|
15 |
+
google-pasta==0.2.0
|
16 |
+
googletrans==3.1.0a0
|
17 |
+
grpcio==1.65.1
|
18 |
+
h11==0.9.0
|
19 |
+
h2==3.2.0
|
20 |
+
h5py==3.11.0
|
21 |
+
hpack==3.0.0
|
22 |
+
hstspreload==2024.3.1
|
23 |
+
httpcore==0.9.1
|
24 |
+
httpx==0.13.3
|
25 |
+
huggingface-hub==0.24.2
|
26 |
+
hyperframe==5.2.0
|
27 |
+
idna==2.10
|
28 |
+
jmespath==1.0.1
|
29 |
+
keras==3.4.1
|
30 |
+
langdetect==1.0.9
|
31 |
+
libclang==18.1.1
|
32 |
+
lxml==5.1.0
|
33 |
+
Markdown==3.6
|
34 |
+
markdown-it-py==3.0.0
|
35 |
+
MarkupSafe==2.1.5
|
36 |
+
mdurl==0.1.2
|
37 |
+
ml-dtypes==0.4.0
|
38 |
+
namex==0.0.8
|
39 |
+
numpy==1.26.4
|
40 |
+
opt-einsum==3.3.0
|
41 |
+
optree==0.12.1
|
42 |
+
packaging==24.1
|
43 |
+
pandas==2.2.2
|
44 |
+
protobuf==4.25.4
|
45 |
+
pyarrow==17.0.0
|
46 |
+
Pygments==2.18.0
|
47 |
+
PyPDF2==3.0.1
|
48 |
+
python-dateutil==2.9.0.post0
|
49 |
+
python-dotenv==1.0.1
|
50 |
+
pytz==2024.1
|
51 |
+
PyYAML==6.0.1
|
52 |
+
regex==2024.7.24
|
53 |
+
requests==2.31.0
|
54 |
+
rfc3986==1.5.0
|
55 |
+
rich==13.7.1
|
56 |
+
s3transfer==0.10.0
|
57 |
+
safetensors==0.4.3
|
58 |
+
six==1.16.0
|
59 |
+
sniffio==1.3.1
|
60 |
+
tensorboard==2.17.0
|
61 |
+
tensorboard-data-server==0.7.2
|
62 |
+
tensorflow==2.17.0
|
63 |
+
termcolor==2.4.0
|
64 |
+
tf_keras==2.17.0
|
65 |
+
tokenizers==0.19.1
|
66 |
+
tqdm==4.66.4
|
67 |
+
transformers==4.43.3
|
68 |
+
typing_extensions==4.12.2
|
69 |
+
tzdata==2024.1
|
70 |
+
urllib3==2.0.7
|
71 |
+
Werkzeug==3.0.3
|
72 |
+
wrapt==1.16.0
|
73 |
+
|
requirements.txt
CHANGED
@@ -1,73 +1,195 @@
|
|
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 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
absl-py==2.1.0
|
2 |
+
aiohappyeyeballs==2.3.7
|
3 |
+
aiohttp==3.10.3
|
4 |
+
aiosignal==1.3.1
|
5 |
+
annotated-types==0.7.0
|
6 |
+
anyio==4.4.0
|
7 |
+
argon2-cffi==23.1.0
|
8 |
+
argon2-cffi-bindings==21.2.0
|
9 |
+
arrow==1.3.0
|
10 |
+
asttokens==2.4.1
|
11 |
+
astunparse==1.6.3
|
12 |
+
async-lru==2.0.4
|
13 |
+
async-timeout==4.0.3
|
14 |
+
attrs==23.2.0
|
15 |
+
Babel==2.15.0
|
16 |
+
beautifulsoup4==4.12.3
|
17 |
+
bleach==6.1.0
|
18 |
+
boto3==1.34.57
|
19 |
+
botocore==1.34.57
|
20 |
+
certifi==2024.2.2
|
21 |
+
cffi==1.16.0
|
22 |
+
chardet==3.0.4
|
23 |
+
charset-normalizer==3.3.2
|
24 |
+
colorama==0.4.6
|
25 |
+
comm==0.2.2
|
26 |
+
contourpy==1.2.1
|
27 |
+
cramjam==2.8.3
|
28 |
+
cycler==0.12.1
|
29 |
+
debugpy==1.8.2
|
30 |
+
decorator==5.1.1
|
31 |
+
deep-translator==1.11.4
|
32 |
+
defusedxml==0.7.1
|
33 |
+
distro==1.9.0
|
34 |
+
exceptiongroup==1.2.1
|
35 |
+
executing==2.0.1
|
36 |
+
fastjsonschema==2.20.0
|
37 |
+
fastparquet==2024.5.0
|
38 |
+
filelock==3.15.4
|
39 |
+
flatbuffers==24.3.25
|
40 |
+
fonttools==4.53.1
|
41 |
+
fqdn==1.5.1
|
42 |
+
frozenlist==1.4.1
|
43 |
+
fsspec==2024.6.1
|
44 |
+
gast==0.6.0
|
45 |
+
gitdb==4.0.11
|
46 |
+
GitPython==3.1.43
|
47 |
+
google-pasta==0.2.0
|
48 |
+
greenlet==3.0.3
|
49 |
+
grpcio==1.65.1
|
50 |
+
h11==0.14.0
|
51 |
+
h2==3.2.0
|
52 |
+
h5py==3.11.0
|
53 |
+
hpack==3.0.0
|
54 |
+
hstspreload==2024.3.1
|
55 |
+
httpcore==1.0.5
|
56 |
+
httpx==0.27.0
|
57 |
+
huggingface-hub==0.24.2
|
58 |
+
hyperframe==5.2.0
|
59 |
+
idna==2.10
|
60 |
+
ipykernel==6.29.5
|
61 |
+
ipython==8.26.0
|
62 |
+
isoduration==20.11.0
|
63 |
+
jedi==0.19.1
|
64 |
+
Jinja2==3.1.4
|
65 |
+
jiter==0.5.0
|
66 |
+
jmespath==1.0.1
|
67 |
+
joblib==1.4.2
|
68 |
+
json5==0.9.25
|
69 |
+
jsonpatch==1.33
|
70 |
+
jsonpointer==3.0.0
|
71 |
+
jsonschema==4.23.0
|
72 |
+
jsonschema-specifications==2023.12.1
|
73 |
+
jupyter-events==0.10.0
|
74 |
+
jupyter-lsp==2.2.5
|
75 |
+
jupyter-server-mathjax==0.2.6
|
76 |
+
jupyter_client==8.6.2
|
77 |
+
jupyter_core==5.7.2
|
78 |
+
jupyter_server==2.14.1
|
79 |
+
jupyter_server_terminals==0.5.3
|
80 |
+
jupyterlab==4.2.3
|
81 |
+
jupyterlab_git==0.50.1
|
82 |
+
jupyterlab_pygments==0.3.0
|
83 |
+
jupyterlab_server==2.27.2
|
84 |
+
keras==3.4.1
|
85 |
+
kiwisolver==1.4.5
|
86 |
+
langchain==0.2.14
|
87 |
+
langchain-core==0.2.33
|
88 |
+
langchain-openai==0.1.22
|
89 |
+
langchain-text-splitters==0.2.2
|
90 |
+
langdetect==1.0.9
|
91 |
+
langsmith==0.1.99
|
92 |
+
libclang==18.1.1
|
93 |
+
lxml==5.1.0
|
94 |
+
Markdown==3.6
|
95 |
+
markdown-it-py==3.0.0
|
96 |
+
MarkupSafe==2.1.5
|
97 |
+
matplotlib==3.9.1
|
98 |
+
matplotlib-inline==0.1.7
|
99 |
+
mdurl==0.1.2
|
100 |
+
mistune==3.0.2
|
101 |
+
ml-dtypes==0.4.0
|
102 |
+
mpmath==1.3.0
|
103 |
+
multidict==6.0.5
|
104 |
+
namex==0.0.8
|
105 |
+
nbclient==0.10.0
|
106 |
+
nbconvert==7.16.4
|
107 |
+
nbdime==4.0.1
|
108 |
+
nbformat==5.10.4
|
109 |
+
nest-asyncio==1.6.0
|
110 |
+
networkx==3.3
|
111 |
+
notebook_shim==0.2.4
|
112 |
+
numpy==1.26.4
|
113 |
+
openai==1.41.0
|
114 |
+
opt-einsum==3.3.0
|
115 |
+
optree==0.12.1
|
116 |
+
orjson==3.10.7
|
117 |
+
overrides==7.7.0
|
118 |
+
packaging==24.1
|
119 |
+
pandas==2.2.2
|
120 |
+
pandocfilters==1.5.1
|
121 |
+
parso==0.8.4
|
122 |
+
pexpect==4.9.0
|
123 |
+
pillow==10.4.0
|
124 |
+
platformdirs==4.2.2
|
125 |
+
plotly==5.22.0
|
126 |
+
prometheus_client==0.20.0
|
127 |
+
prompt_toolkit==3.0.47
|
128 |
+
protobuf==4.25.4
|
129 |
+
psutil==6.0.0
|
130 |
+
ptyprocess==0.7.0
|
131 |
+
pure-eval==0.2.2
|
132 |
+
pyarrow==17.0.0
|
133 |
+
pycparser==2.22
|
134 |
+
pydantic==2.8.2
|
135 |
+
pydantic_core==2.20.1
|
136 |
+
Pygments==2.18.0
|
137 |
+
pyparsing==3.1.2
|
138 |
+
PyPDF2==3.0.1
|
139 |
+
python-dateutil==2.9.0.post0
|
140 |
+
python-dotenv==1.0.1
|
141 |
+
python-json-logger==2.0.7
|
142 |
+
pytz==2024.1
|
143 |
+
PyYAML==6.0.1
|
144 |
+
pyzmq==26.0.3
|
145 |
+
referencing==0.35.1
|
146 |
+
regex==2024.7.24
|
147 |
+
requests==2.31.0
|
148 |
+
rfc3339-validator==0.1.4
|
149 |
+
rfc3986==1.5.0
|
150 |
+
rfc3986-validator==0.1.1
|
151 |
+
rich==13.7.1
|
152 |
+
rpds-py==0.19.0
|
153 |
+
s3transfer==0.10.0
|
154 |
+
safetensors==0.4.3
|
155 |
+
scikit-learn==1.5.1
|
156 |
+
scipy==1.14.0
|
157 |
+
seaborn==0.13.2
|
158 |
+
Send2Trash==1.8.3
|
159 |
+
six==1.16.0
|
160 |
+
smmap==5.0.1
|
161 |
+
sniffio==1.3.1
|
162 |
+
soupsieve==2.5
|
163 |
+
SQLAlchemy==2.0.32
|
164 |
+
stack-data==0.6.3
|
165 |
+
sympy==1.13.0
|
166 |
+
tenacity==8.5.0
|
167 |
+
tensorboard==2.17.0
|
168 |
+
tensorboard-data-server==0.7.2
|
169 |
+
tensorflow==2.17.0
|
170 |
+
tensorflow-io-gcs-filesystem==0.37.1
|
171 |
+
termcolor==2.4.0
|
172 |
+
terminado==0.18.1
|
173 |
+
tf_keras==2.17.0
|
174 |
+
threadpoolctl==3.5.0
|
175 |
+
tiktoken==0.7.0
|
176 |
+
tinycss2==1.3.0
|
177 |
+
tokenizers==0.19.1
|
178 |
+
tomli==2.0.1
|
179 |
+
torch==2.3.1+cpu
|
180 |
+
tornado==6.4.1
|
181 |
+
tqdm==4.66.4
|
182 |
+
traitlets==5.14.3
|
183 |
+
transformers==4.43.3
|
184 |
+
types-python-dateutil==2.9.0.20240316
|
185 |
+
typing_extensions==4.12.2
|
186 |
+
tzdata==2024.1
|
187 |
+
uri-template==1.3.0
|
188 |
+
urllib3==2.0.7
|
189 |
+
wcwidth==0.2.13
|
190 |
+
webcolors==24.6.0
|
191 |
+
webencodings==0.5.1
|
192 |
+
websocket-client==1.8.0
|
193 |
+
Werkzeug==3.0.3
|
194 |
+
wrapt==1.16.0
|
195 |
+
yarl==1.9.4
|