-
Notifications
You must be signed in to change notification settings - Fork 114
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
faradox
committed
Feb 29, 2024
1 parent
ed3c969
commit a23201f
Showing
10 changed files
with
653 additions
and
823 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
input | ||
nendo_library | ||
library | ||
processed | ||
separated | ||
polymath_library | ||
polymath_input | ||
polymath_output | ||
.python-version | ||
polymath.egg-info | ||
__pycache__ | ||
models |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,12 @@ | ||
input/ | ||
library/ | ||
processed/ | ||
separated/ | ||
input | ||
nendo_library | ||
library | ||
processed | ||
separated | ||
polymath_library | ||
polymath_input | ||
polymath_output | ||
.python-version | ||
polymath.egg-info | ||
__pycache__ | ||
models |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,21 @@ | ||
FROM python:3.10-bullseye | ||
FROM python:3.8-slim-buster | ||
|
||
RUN apt update | ||
RUN apt install -y rubberband-cli make automake gcc g++ python3-dev gfortran build-essential wget libsndfile1 ffmpeg | ||
RUN apt-get update \ | ||
&& apt-get -y install rubberband-cli \ | ||
libasound-dev portaudio19-dev \ | ||
libportaudio2 libportaudiocpp0 git gcc \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
RUN pip install --upgrade pip | ||
RUN pip install git+https://github.com/CPJKU/madmom.git@0551aa8 | ||
|
||
COPY . /polymath | ||
WORKDIR /polymath | ||
COPY . . | ||
RUN pip install -r ./requirements.txt | ||
|
||
RUN pip install -r requirements.txt | ||
|
||
RUN mkdir -p input processed separated library | ||
|
||
# fixes for some dependency conflicts | ||
RUN pip uninstall -y soundfile | ||
RUN pip install soundfile | ||
RUN pip install soundfile==0.12.1 | ||
RUN pip install numpy==1.22.4 | ||
RUN pip uninstall -y essentia essentia-tensorflow | ||
RUN pip install essentia-tensorflow |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.