Spaces:
Sleeping
Sleeping
add fullrequirements.txt
Browse files- app.py +0 -6
- vul_app_requirements.txt +157 -0
app.py
CHANGED
@@ -51,12 +51,6 @@ with st.expander("ℹ️ - About this app", expanded=False):
|
|
51 |
- Step 2: The paragraphs are then fed to the **Vulnerability Classifier** which detects if
|
52 |
the paragraph contains any or multiple references to vulnerable groups.
|
53 |
""")
|
54 |
-
import pkg_resources
|
55 |
-
installed_packages = pkg_resources.working_set
|
56 |
-
list_ = ""
|
57 |
-
for package in installed_packages:
|
58 |
-
list_ = list_ + f"{package.key}=={package.version}\n"
|
59 |
-
st.download_button('Download Requirements', list_, file_name='requirements.txt')
|
60 |
|
61 |
st.write("")
|
62 |
|
|
|
51 |
- Step 2: The paragraphs are then fed to the **Vulnerability Classifier** which detects if
|
52 |
the paragraph contains any or multiple references to vulnerable groups.
|
53 |
""")
|
|
|
|
|
|
|
|
|
|
|
|
|
54 |
|
55 |
st.write("")
|
56 |
|
vul_app_requirements.txt
ADDED
@@ -0,0 +1,157 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
setfit==1.1.0.dev0
|
2 |
+
huggingface-hub==0.24.5
|
3 |
+
jsonschema-specifications==2024.10.1
|
4 |
+
regex==2024.9.11
|
5 |
+
fsspec==2024.9.0
|
6 |
+
certifi==2024.8.30
|
7 |
+
pytz==2024.2
|
8 |
+
setuptools==65.5.1
|
9 |
+
attrs==24.2.0
|
10 |
+
cattrs==24.1.2
|
11 |
+
packaging==24.1
|
12 |
+
aiofiles==23.2.1
|
13 |
+
pip==23.0.1
|
14 |
+
pyarrow==17.0.0
|
15 |
+
rich==13.9.2
|
16 |
+
nvidia-nvjitlink-cu12==12.6.77
|
17 |
+
nvidia-cuda-cupti-cu12==12.1.105
|
18 |
+
nvidia-cuda-nvrtc-cu12==12.1.105
|
19 |
+
nvidia-cuda-runtime-cu12==12.1.105
|
20 |
+
nvidia-nvtx-cu12==12.1.105
|
21 |
+
nvidia-cublas-cu12==12.1.3.1
|
22 |
+
nvidia-cusparse-cu12==12.1.0.106
|
23 |
+
nvidia-cusolver-cu12==11.4.5.107
|
24 |
+
websockets==11.0.3
|
25 |
+
nvidia-cufft-cu12==11.0.2.54
|
26 |
+
more-itertools==10.5.0
|
27 |
+
pillow==10.4.0
|
28 |
+
nvidia-curand-cu12==10.3.2.106
|
29 |
+
tenacity==9.0.0
|
30 |
+
nvidia-cudnn-cu12==8.9.2.26
|
31 |
+
importlib-metadata==8.5.0
|
32 |
+
click==8.1.7
|
33 |
+
inflect==7.4.0
|
34 |
+
importlib-resources==6.4.5
|
35 |
+
tornado==6.4.1
|
36 |
+
multidict==6.1.0
|
37 |
+
pyyaml==6.0.2
|
38 |
+
plotly==5.24.1
|
39 |
+
psutil==5.9.8
|
40 |
+
cachetools==5.5.0
|
41 |
+
tzlocal==5.2
|
42 |
+
watchdog==5.0.3
|
43 |
+
smmap==5.0.1
|
44 |
+
tqdm==4.66.5
|
45 |
+
fonttools==4.54.1
|
46 |
+
transformers==4.36.2
|
47 |
+
jsonschema==4.23.0
|
48 |
+
typing-extensions==4.12.2
|
49 |
+
anyio==4.6.2.post1
|
50 |
+
platformdirs==4.3.6
|
51 |
+
typeguard==4.3.0
|
52 |
+
altair==4.2.2
|
53 |
+
gitdb==4.0.11
|
54 |
+
async-timeout==4.0.3
|
55 |
+
prompthub-py==4.0.0
|
56 |
+
gradio==3.50.2
|
57 |
+
protobuf==3.20.3
|
58 |
+
zipp==3.20.2
|
59 |
+
filelock==3.16.1
|
60 |
+
aiohttp==3.10.10
|
61 |
+
orjson==3.10.7
|
62 |
+
idna==3.10
|
63 |
+
nltk==3.9.1
|
64 |
+
posthog==3.7.0
|
65 |
+
matplotlib==3.5.1
|
66 |
+
threadpoolctl==3.5.0
|
67 |
+
xxhash==3.5.0
|
68 |
+
networkx==3.4.1
|
69 |
+
charset-normalizer==3.4.0
|
70 |
+
xlsxwriter==3.2.0
|
71 |
+
pyparsing==3.2.0
|
72 |
+
gitpython==3.1.43
|
73 |
+
jinja2==3.1.4
|
74 |
+
sentence-transformers==3.0.1
|
75 |
+
markdown-it-py==3.0.0
|
76 |
+
requests==2.32.3
|
77 |
+
nvidia-nccl-cu12==2.18.1
|
78 |
+
pygments==2.18.0
|
79 |
+
semantic-version==2.10.0
|
80 |
+
python-dateutil==2.9.0.post0
|
81 |
+
aiohappyeyeballs==2.4.3
|
82 |
+
datasets==2.3.0
|
83 |
+
urllib3==2.2.3
|
84 |
+
backoff==2.2.1
|
85 |
+
markupsafe==2.1.5
|
86 |
+
torch==2.1.0
|
87 |
+
triton==2.1.0
|
88 |
+
pymupdf==1.24.11
|
89 |
+
farm-haystack==1.24.0
|
90 |
+
numpy==1.22.1
|
91 |
+
streamlit==1.21.0
|
92 |
+
pdf2image==1.17.0
|
93 |
+
six==1.16.0
|
94 |
+
yarl==1.15.4
|
95 |
+
sympy==1.13.3
|
96 |
+
scipy==1.11.4
|
97 |
+
blinker==1.8.2
|
98 |
+
pydantic==1.8.2
|
99 |
+
sseclient-py==1.8.0
|
100 |
+
monotonic==1.6
|
101 |
+
kiwisolver==1.4.7
|
102 |
+
appdirs==1.4.4
|
103 |
+
url-normalize==1.4.3
|
104 |
+
joblib==1.4.2
|
105 |
+
frozenlist==1.4.1
|
106 |
+
pandas==1.4.0
|
107 |
+
scikit-learn==1.3.2
|
108 |
+
aiosignal==1.3.1
|
109 |
+
sniffio==1.3.1
|
110 |
+
mpmath==1.3.0
|
111 |
+
exceptiongroup==1.2.2
|
112 |
+
pympler==1.1
|
113 |
+
langdetect==1.0.9
|
114 |
+
boilerpy3==1.0.7
|
115 |
+
httpcore==1.0.6
|
116 |
+
toolz==1.0.0
|
117 |
+
fastapi==0.115.2
|
118 |
+
multiprocess==0.70.13
|
119 |
+
wheel==0.41.1
|
120 |
+
starlette==0.40.0
|
121 |
+
referencing==0.35.1
|
122 |
+
validators==0.34.0
|
123 |
+
uvicorn==0.32.0
|
124 |
+
openai==0.27.9
|
125 |
+
httpx==0.27.2
|
126 |
+
pydub==0.25.1
|
127 |
+
rpds-py==0.20.0
|
128 |
+
responses==0.18.0
|
129 |
+
spaces==0.17.0
|
130 |
+
tokenizers==0.15.2
|
131 |
+
statsmodels==0.14.1
|
132 |
+
h11==0.14.0
|
133 |
+
cycler==0.12.1
|
134 |
+
seaborn==0.11.2
|
135 |
+
toml==0.10.2
|
136 |
+
requests-cache==0.9.8
|
137 |
+
quantulum3==0.9.2
|
138 |
+
pydeck==0.9.1
|
139 |
+
tiktoken==0.8.0
|
140 |
+
docopt==0.6.2
|
141 |
+
gradio-client==0.6.1
|
142 |
+
num2words==0.5.13
|
143 |
+
patsy==0.5.6
|
144 |
+
events==0.5
|
145 |
+
safetensors==0.4.5
|
146 |
+
evaluate==0.4.3
|
147 |
+
plotly-express==0.4.1
|
148 |
+
entrypoints==0.4
|
149 |
+
ffmpy==0.4.0
|
150 |
+
typer==0.4.0
|
151 |
+
pytesseract==0.3.13
|
152 |
+
dill==0.3.5.1
|
153 |
+
lazy-imports==0.3.1
|
154 |
+
rank-bm25==0.2.2
|
155 |
+
propcache==0.2.0
|
156 |
+
mdurl==0.1.2
|
157 |
+
python-multipart==0.0.12
|