hanantonio commited on
Commit
de96184
·
verified ·
1 Parent(s): d28f5a6

Upload 2 files

Browse files
Files changed (2) hide show
  1. src/Dockerfile +4 -0
  2. src/requirements.txt +17 -13
src/Dockerfile CHANGED
@@ -12,6 +12,10 @@ COPY requirements.txt ./
12
  COPY src/ ./src/
13
 
14
  RUN pip install --upgrade pip
 
 
 
 
15
 
16
  EXPOSE 8501
17
 
 
12
  COPY src/ ./src/
13
 
14
  RUN pip install --upgrade pip
15
+ RUN pip install --upgrade pip
16
+ RUN pip install -r requirements.txt
17
+ RUN pip install fastopic==1.0.1 --no-deps
18
+ RUN pip install topmost==1.0.2 --no-deps
19
 
20
  EXPOSE 8501
21
 
src/requirements.txt CHANGED
@@ -1,18 +1,22 @@
1
- torch==1.11.0
2
- torchvision==0.21.0
3
- tensorflow==2.19.0
4
  streamlit==1.44.0
5
  pandas==2.2.3
6
- seaborn==0.13.2
7
- matplotlib==3.10.0
8
- plotly==6.3.0
9
- pillow==11.0.0
10
- numpy==2.1.3
11
- wordcloud==1.9.4
12
- fastopic==1.0.1
13
- topmost==1.0.2
 
 
14
  gensim==4.3.3
15
- joblib==1.3.2
16
  scikit-learn==1.5.2
17
- nltk==3.9.1
 
 
18
 
 
1
+ pip>=25.2
2
+ torch==2.5.0
3
+ torchvision==0.20.0
4
  streamlit==1.44.0
5
  pandas==2.2.3
6
+ seaborn
7
+ matplotlib
8
+ plotly
9
+ pillow
10
+ numpy
11
+ wordcloud
12
+ # Install fastopic without pulling torch==1.11.0
13
+ fastopic==1.0.1 --no-deps
14
+ # Install topmost without pulling old torch deps
15
+ topmost==1.0.2 --no-deps
16
  gensim==4.3.3
17
+ joblib==1.2.0
18
  scikit-learn==1.5.2
19
+ tensorflow==2.17.1
20
+ nltk
21
+
22