Spaces:
Sleeping
Sleeping
Phil Sobrepena
commited on
Commit
·
c9b9594
1
Parent(s):
ef317b2
dependencies
Browse files- Dockerfile +12 -2
- requirements.txt +10 -1
Dockerfile
CHANGED
@@ -12,6 +12,7 @@ RUN apt-get update && apt-get install -y \
|
|
12 |
libsm6 \
|
13 |
libxext6 \
|
14 |
curl \
|
|
|
15 |
&& rm -rf /var/lib/apt/lists/*
|
16 |
|
17 |
# Ensure we're using Python 3.10
|
@@ -31,10 +32,19 @@ RUN pip3 install --no-cache-dir \
|
|
31 |
torchaudio==2.1.2 \
|
32 |
--index-url https://download.pytorch.org/whl/cu118
|
33 |
|
34 |
-
# Install
|
35 |
RUN pip3 install --no-cache-dir \
|
36 |
colorlog==6.8.2 \
|
37 |
-
torchdiffeq==0.2.3
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
38 |
|
39 |
# Clone MMAudio
|
40 |
RUN git clone https://github.com/hkchengrex/MMAudio.git
|
|
|
12 |
libsm6 \
|
13 |
libxext6 \
|
14 |
curl \
|
15 |
+
libsndfile1 \
|
16 |
&& rm -rf /var/lib/apt/lists/*
|
17 |
|
18 |
# Ensure we're using Python 3.10
|
|
|
32 |
torchaudio==2.1.2 \
|
33 |
--index-url https://download.pytorch.org/whl/cu118
|
34 |
|
35 |
+
# Install core dependencies
|
36 |
RUN pip3 install --no-cache-dir \
|
37 |
colorlog==6.8.2 \
|
38 |
+
torchdiffeq==0.2.3 \
|
39 |
+
omegaconf>=2.3.0 \
|
40 |
+
pandas>=2.0.0 \
|
41 |
+
tensordict>=0.2.0 \
|
42 |
+
hydra-core>=1.3.2 \
|
43 |
+
tqdm>=4.65.0 \
|
44 |
+
librosa>=0.10.1 \
|
45 |
+
timm>=0.9.12 \
|
46 |
+
requests>=2.31.0 \
|
47 |
+
torio>=0.3.1
|
48 |
|
49 |
# Clone MMAudio
|
50 |
RUN git clone https://github.com/hkchengrex/MMAudio.git
|
requirements.txt
CHANGED
@@ -3,6 +3,7 @@ torch==2.1.2
|
|
3 |
torchvision==0.16.2
|
4 |
torchaudio==2.1.2
|
5 |
torchdiffeq==0.2.3
|
|
|
6 |
huggingface_hub>=0.26.1
|
7 |
Pillow>=9.5
|
8 |
opencv-python-headless>=4.8
|
@@ -14,4 +15,12 @@ transformers>=4.36.2
|
|
14 |
ffmpeg-python>=0.2.0
|
15 |
moviepy>=1.0.3
|
16 |
python-multipart>=0.0.9
|
17 |
-
colorlog==6.8.2
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
torchvision==0.16.2
|
4 |
torchaudio==2.1.2
|
5 |
torchdiffeq==0.2.3
|
6 |
+
omegaconf>=2.3.0
|
7 |
huggingface_hub>=0.26.1
|
8 |
Pillow>=9.5
|
9 |
opencv-python-headless>=4.8
|
|
|
15 |
ffmpeg-python>=0.2.0
|
16 |
moviepy>=1.0.3
|
17 |
python-multipart>=0.0.9
|
18 |
+
colorlog==6.8.2
|
19 |
+
pandas>=2.0.0
|
20 |
+
tensordict>=0.2.0
|
21 |
+
hydra-core>=1.3.2
|
22 |
+
tqdm>=4.65.0
|
23 |
+
librosa>=0.10.1
|
24 |
+
timm>=0.9.12
|
25 |
+
requests>=2.31.0
|
26 |
+
torio>=0.3.1
|