Ajay Karthick Senthil Kumar commited on
Commit
9fac465
·
1 Parent(s): 720b489

add requirements.txt

Browse files
Files changed (3) hide show
  1. Dockerfile +0 -22
  2. conda.yml +0 -18
  3. requirements.txt +17 -0
Dockerfile DELETED
@@ -1,22 +0,0 @@
1
- # Use a basic Python image
2
- FROM continuumio/miniconda3:latest
3
-
4
- # Set the working directory in the container
5
- WORKDIR /app
6
-
7
- # Copy the local files into the container
8
- COPY . /app
9
-
10
- # Install the necessary conda environment from conda.yml
11
- COPY conda.yml /app/conda.yml
12
- RUN conda env create -f /app/conda.yml
13
-
14
- # Activate the conda environment and ensure it is activated when the container starts
15
- RUN echo "source activate audio-deepfake-env" > ~/.bashrc
16
- ENV PATH /opt/conda/envs/audio-deepfake-env/bin:$PATH
17
-
18
- # Expose the necessary port (e.g., for Streamlit)
19
- EXPOSE 8501
20
-
21
- # Run your app
22
- CMD ["streamlit", "run", "app.py"]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
conda.yml DELETED
@@ -1,18 +0,0 @@
1
- name: audio-deepfake-env
2
- channels:
3
- - conda-forge
4
- dependencies:
5
- - python=3.9
6
- - joblib=1.3.0
7
- - pandas=1.5.3
8
- - scikit-learn=1.2.2
9
- - scipy=1.10.0
10
- - streamlit=1.25.0
11
- - numpy=1.24.3
12
- - librosa=0.10.0
13
- - matplotlib=3.7.2
14
- - tqdm=4.66.1
15
- - seaborn
16
- - pip # Include pip in the conda environment
17
- - pip:
18
- - praat-parselmouth # Install praat-parselmouth via pip
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
requirements.txt ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Python version
2
+ python==3.9
3
+
4
+ # Conda packages equivalent in pip
5
+ joblib==1.3.0
6
+ pandas==1.5.3
7
+ scikit-learn==1.2.2
8
+ scipy==1.10.0
9
+ streamlit==1.25.0
10
+ numpy==1.24.3
11
+ librosa==0.10.0
12
+ matplotlib==3.7.2
13
+ tqdm==4.66.1
14
+ seaborn==0.12.2
15
+
16
+ # Packages only available via pip
17
+ praat-parselmouth==0.4.0