fix: switch up to 1.4.5

This commit is contained in:
Félix Voituret
2019-11-22 14:51:18 +01:00
parent ced4028ce8
commit 0ba6c321ce
7 changed files with 8 additions and 10 deletions

View File

@@ -13,10 +13,8 @@ RUN apt-get update --fix-missing \
&& echo "conda activate base" >> ~/.bashrc \
&& ln -s /opt/conda/bin/conda /usr/bin/conda
RUN conda install -y tensorflow-gpu==1.14.0 \
&& conda install -y -c conda-forge musdb
RUN conda install -y -c conda-forge musdb
# RUN conda install -y -c conda-forge museval
# Note: switch to spleeter GPU once published.
RUN conda install -y -c conda-forge spleeter=1.4.4
RUN conda install -y -c conda-forge spleeter-gpu=1.4.5
ENTRYPOINT ["spleeter"]

View File

@@ -2,7 +2,7 @@ FROM continuumio/miniconda3:4.7.10
RUN conda install -y -c conda-forge musdb
# RUN conda install -y -c conda-forge museval
RUN conda install -y -c conda-forge spleeter=1.4.4
RUN conda install -y -c conda-forge spleeter=1.4.5
RUN mkdir -p /model
ENV MODEL_PATH /model

View File

@@ -49,7 +49,7 @@ RUN apt-get update \
# Spleeter installation.
RUN apt-get update && apt-get install -y ffmpeg libsndfile1
RUN pip install musdb museval
RUN pip install spleeter-gpu==1.4.4
RUN pip install spleeter-gpu==1.4.5
RUN mkdir -p /model
ENV MODEL_PATH /model
ENTRYPOINT ["spleeter"]

View File

@@ -2,7 +2,7 @@ FROM python:3.6
RUN apt-get update && apt-get install -y ffmpeg libsndfile1
RUN pip install musdb museval
RUN pip install spleeter==1.4.4
RUN pip install spleeter==1.4.5
RUN mkdir -p /model
ENV MODEL_PATH /model
ENTRYPOINT ["spleeter"]

View File

@@ -48,7 +48,7 @@ RUN apt-get update \
# Spleeter installation.
RUN apt-get update && apt-get install -y ffmpeg libsndfile1
RUN pip install musdb museval
RUN pip install spleeter-gpu==1.4.4
RUN pip install spleeter-gpu==1.4.5
RUN mkdir -p /model
ENV MODEL_PATH /model
ENTRYPOINT ["spleeter"]

View File

@@ -2,7 +2,7 @@ FROM python:3.7
RUN apt-get update && apt-get install -y ffmpeg libsndfile1
RUN pip install musdb museval
RUN pip install spleeter==1.4.4
RUN pip install spleeter==1.4.5
RUN mkdir -p /model
ENV MODEL_PATH /model
ENTRYPOINT ["spleeter"]

View File

@@ -14,7 +14,7 @@ __license__ = 'MIT License'
# Default project values.
project_name = 'spleeter'
project_version = '1.4.4'
project_version = '1.4.5'
tensorflow_dependency = 'tensorflow'
tensorflow_version = '1.14.0'
here = path.abspath(path.dirname(__file__))