Florin commited on
Commit
64f3547
1 Parent(s): 00aad26

Second Commit

Browse files
Files changed (2) hide show
  1. Dockerfile +10 -0
  2. requirements.txt +5 -0
Dockerfile ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.9
2
+
3
+ WORKDIR /ml/sentiment_analysis
4
+
5
+ #ADD LogisticRegr.py .
6
+ COPY . /ml/sentiment_analysis/
7
+
8
+ RUN pip install -r requirements.txt
9
+
10
+ CMD ["python", "./ml/sentiment_analysis/main.py"]
requirements.txt ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ streamlit
2
+ pandas
3
+ numpy
4
+ tensorflow
5
+ transformers