-
Notifications
You must be signed in to change notification settings - Fork 911
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #431 from unit8co/develop
Release v0.10.0
- Loading branch information
Showing
74 changed files
with
7,085 additions
and
1,812 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
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,26 +1,20 @@ | ||
FROM jupyter/base-notebook:python-3.7.6 | ||
FROM jupyter/base-notebook:python-3.9.5 | ||
|
||
# By default base-notebook install latest python version and fix it in the pinned constraint | ||
# remove the file, change the python version and update packages | ||
|
||
#RUN rm $CONDA_DIR/conda-meta/pinned | ||
#RUN conda install python=3.6.8 -y --quiet && conda update --all -y --quiet && \ | ||
#conda clean --all -f -y | ||
RUN conda install -c conda-forge ipywidgets -y --quiet | ||
RUN conda update --all -y --quiet \ | ||
&& conda install -c conda-forge ipywidgets -y --quiet \ | ||
&& conda clean --all -f -y | ||
|
||
USER root | ||
|
||
RUN apt-get update && apt-get -y install curl && apt-get -y install apt-utils | ||
|
||
# to build prophet | ||
RUN apt-get -y install build-essential libc-dev | ||
# to build pystan | ||
RUN apt-get update \ | ||
&& apt-get -y install build-essential \ | ||
&& apt-get clean && rm -rf /var/lib/apt/lists/* | ||
|
||
USER $NB_USER | ||
|
||
# u8ts specific deps | ||
RUN pip install pystan | ||
ADD . /home/jovyan/work | ||
|
||
WORKDIR /home/jovyan/work | ||
|
||
RUN pip install .['all'] | ||
RUN pip install . |
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
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
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,3 @@ | ||
from .cost_matrix import CostMatrix | ||
from .window import Window, NoWindow, Itakura, SakoeChiba, CRWindow | ||
from .dtw import dtw, DTWAlignment |
Oops, something went wrong.