From 6a86f8ac21549d6b6d6da4ded0e77e719c27de8c Mon Sep 17 00:00:00 2001 From: CodeLionX Date: Fri, 15 Dec 2023 14:34:28 +0100 Subject: [PATCH] feat: adapt algorithms with names starting with [j-n] --- knn/Dockerfile | 6 ++++-- knn/manifest.json | 2 +- laser_dbn/Dockerfile | 10 ++++++---- laser_dbn/manifest.json | 2 +- left_stampi/Dockerfile | 4 +++- left_stampi/manifest.json | 2 +- lof/Dockerfile | 6 ++++-- lof/manifest.json | 2 +- lstm_ad/Dockerfile | 4 +++- lstm_ad/manifest.json | 2 +- lstm_vae/Dockerfile | 4 +++- lstm_vae/manifest.json | 2 +- median_method/Dockerfile | 27 ++++++--------------------- median_method/manifest.json | 2 +- mscred/Dockerfile | 4 +++- mscred/manifest.json | 2 +- mstamp/Dockerfile | 6 ++++-- mstamp/manifest.json | 2 +- mtad_gat/Dockerfile | 6 ++++-- mtad_gat/manifest.json | 2 +- multi_hmm/Dockerfile | 6 ++++-- multi_hmm/manifest.json | 2 +- multi_subsequence_lof/Dockerfile | 6 ++++-- multi_subsequence_lof/manifest.json | 2 +- mvalmod/Dockerfile | 3 ++- mvalmod/manifest.json | 2 +- norma/manifest.json | 2 +- normalizing_flows/Dockerfile | 5 +++-- normalizing_flows/manifest.json | 2 +- novelty_svr/Dockerfile | 14 ++++++++------ novelty_svr/manifest.json | 2 +- numenta_htm/Dockerfile | 19 ++++++++++++++++--- numenta_htm/manifest.json | 2 +- 33 files changed, 94 insertions(+), 70 deletions(-) diff --git a/knn/Dockerfile b/knn/Dockerfile index 62cb232..8df15b0 100644 --- a/knn/Dockerfile +++ b/knn/Dockerfile @@ -1,6 +1,7 @@ -FROM registry.gitlab.hpi.de/akita/i/pyod:0.2.5 +FROM ghcr.io/timeeval/pyod:0.3.0 LABEL maintainer="sebastian.schmidl@hpi.de" +LABEL org.opencontainers.image.licenses=MIT ENV ALGORITHM_MAIN="/app/algorithm.py" @@ -8,4 +9,5 @@ ENV ALGORITHM_MAIN="/app/algorithm.py" COPY requirements.txt /app/ RUN pip install -r /app/requirements.txt -COPY algorithm.py . +COPY manifest.json /app/ +COPY algorithm.py /app/ diff --git a/knn/manifest.json b/knn/manifest.json index de7ad78..fba2411 100644 --- a/knn/manifest.json +++ b/knn/manifest.json @@ -2,7 +2,7 @@ "title": "KNN", "description": "Implementation of https://doi.org/10.1145/342009.335437.", "inputDimensionality": "multivariate", - "version": "0.1", + "version": "0.3.0", "authors": "Sridhar Ramaswamy,Rajeev Rastogi, Kyuseok Shim", "language": "Python", "type": "Detector", diff --git a/laser_dbn/Dockerfile b/laser_dbn/Dockerfile index b7e0e2b..2fd0917 100644 --- a/laser_dbn/Dockerfile +++ b/laser_dbn/Dockerfile @@ -1,11 +1,13 @@ -FROM registry.gitlab.hpi.de/akita/i/python3-base:0.2.5 +FROM ghcr.io/timeeval/python3-base:0.3.0 LABEL maintainer="phillip.wenig@hpi.de" +LABEL org.opencontainers.image.licenses=MIT ENV ALGORITHM_MAIN="/app/algorithm.py" COPY requirements.txt /app/ -COPY algorithm.py /app/ -COPY laser_dbn /app/laser_dbn - RUN pip install -r /app/requirements.txt + +COPY manifest.json /app/ +COPY laser_dbn /app/laser_dbn +COPY algorithm.py /app/ diff --git a/laser_dbn/manifest.json b/laser_dbn/manifest.json index 04de1d6..b472c66 100644 --- a/laser_dbn/manifest.json +++ b/laser_dbn/manifest.json @@ -2,7 +2,7 @@ "title": "LaserDBN", "description": "Implementation of https://doi.org/10.1007/978-3-662-53806-7_3", "inputDimensionality": "multivariate", - "version": "0.1", + "version": "0.3.0", "authors": "Alberto Ogbechie, Javier Díaz-Rozo, Pedro Larrañaga, Concha Bielza", "language": "Python", "type": "Detector", diff --git a/left_stampi/Dockerfile b/left_stampi/Dockerfile index 2673b8c..a297036 100644 --- a/left_stampi/Dockerfile +++ b/left_stampi/Dockerfile @@ -1,10 +1,12 @@ -FROM registry.gitlab.hpi.de/akita/i/python3-base:0.2.5 +FROM ghcr.io/timeeval/python3-base:0.3.0 LABEL maintainer="phillip.wenig@hpi.de" +LABEL org.opencontainers.image.licenses="BSD-3-Clause" ENV ALGORITHM_MAIN="/app/algorithm.py" COPY requirements.txt /app/ RUN pip install -r requirements.txt +COPY manifest.json /app/ COPY algorithm.py /app/ diff --git a/left_stampi/manifest.json b/left_stampi/manifest.json index 839e267..d874241 100644 --- a/left_stampi/manifest.json +++ b/left_stampi/manifest.json @@ -2,7 +2,7 @@ "title": "Left STAMPi", "description": "Implementation of https://www.cs.ucr.edu/~eamonn/PID4481997_extend_Matrix%20Profile_I.pdf", "inputDimensionality": "univariate", - "version": "0.1", + "version": "0.3.0", "authors": "Chin-Chia Michael Yeh, Yan Zhu, Liudmila Ulanova, Nurjahan Begum, Yifei Ding, Hoang Anh Dau, Diego Furtado Silva, Abdullah Mueen, and Eamonn Keogh", "language": "Python", "type": "Detector", diff --git a/lof/Dockerfile b/lof/Dockerfile index 62cb232..8df15b0 100644 --- a/lof/Dockerfile +++ b/lof/Dockerfile @@ -1,6 +1,7 @@ -FROM registry.gitlab.hpi.de/akita/i/pyod:0.2.5 +FROM ghcr.io/timeeval/pyod:0.3.0 LABEL maintainer="sebastian.schmidl@hpi.de" +LABEL org.opencontainers.image.licenses=MIT ENV ALGORITHM_MAIN="/app/algorithm.py" @@ -8,4 +9,5 @@ ENV ALGORITHM_MAIN="/app/algorithm.py" COPY requirements.txt /app/ RUN pip install -r /app/requirements.txt -COPY algorithm.py . +COPY manifest.json /app/ +COPY algorithm.py /app/ diff --git a/lof/manifest.json b/lof/manifest.json index c8e197e..cc62fa9 100644 --- a/lof/manifest.json +++ b/lof/manifest.json @@ -2,7 +2,7 @@ "title": "LOF", "description": "Implementation of https://doi.org/10.1145/342009.335388.", "inputDimensionality": "multivariate", - "version": "0.1", + "version": "0.3.0", "authors": "Markus M. Breunig, Hans-Peter Kriegel, Raymond T. Ng, Jörg Sander", "language": "Python", "type": "Detector", diff --git a/lstm_ad/Dockerfile b/lstm_ad/Dockerfile index 1a8edff..373518a 100644 --- a/lstm_ad/Dockerfile +++ b/lstm_ad/Dockerfile @@ -1,6 +1,7 @@ -FROM registry.gitlab.hpi.de/akita/i/python3-torch:0.2.5 +FROM ghcr.io/timeeval/python3-torch:0.3.0 LABEL maintainer="phillip.wenig@hpi.de" +LABEL org.opencontainers.image.licenses=MIT ENV ALGORITHM_MAIN="/app/algorithm.py" @@ -9,4 +10,5 @@ COPY requirements.txt /app/ RUN pip install -r /app/requirements.txt COPY lstm_ad /app/lstm_ad +COPY manifest.json /app/ COPY algorithm.py /app/ diff --git a/lstm_ad/manifest.json b/lstm_ad/manifest.json index 05d334d..fafaf4f 100644 --- a/lstm_ad/manifest.json +++ b/lstm_ad/manifest.json @@ -2,7 +2,7 @@ "title": "LSTM-AD", "description": "Implementation of https://www.elen.ucl.ac.be/Proceedings/esann/esannpdf/es2015-56.pdf", "inputDimensionality": "multivariate", - "version": "0.1", + "version": "0.3.0", "authors": "Pankaj Malhotra, Lovekesh Vig, Gautam Shroff, Puneet Agarwal", "language": "Python", "type": "Detector", diff --git a/lstm_vae/Dockerfile b/lstm_vae/Dockerfile index a311ba7..6ff6912 100644 --- a/lstm_vae/Dockerfile +++ b/lstm_vae/Dockerfile @@ -1,6 +1,7 @@ -FROM registry.gitlab.hpi.de/akita/i/python3-torch:0.2.5 +FROM ghcr.io/timeeval/python3-torch:0.3.0 LABEL maintainer="siddeshkanth.logonathan@student.hpi.de" +LABEL org.opencontainers.image.licenses=MIT ENV ALGORITHM_MAIN="/app/algorithm.py" @@ -8,4 +9,5 @@ COPY requirements.txt /app/ RUN pip install -r /app/requirements.txt; COPY src /app/src +COPY manifest.json /app/ COPY algorithm.py /app/ diff --git a/lstm_vae/manifest.json b/lstm_vae/manifest.json index f2b5e0e..439b0e6 100644 --- a/lstm_vae/manifest.json +++ b/lstm_vae/manifest.json @@ -2,7 +2,7 @@ "title": "LSTM-VAE", "description": "self implementation of: https://ieeexplore.ieee.org/document/8279425", "inputDimensionality": "univariate", - "version": "0.1", + "version": "0.3.0", "authors": "Siddeshkanth Logonathan", "learningType": "Semi-Supervised", "language": "Python", diff --git a/median_method/Dockerfile b/median_method/Dockerfile index 521d1ab..bec8a8d 100644 --- a/median_method/Dockerfile +++ b/median_method/Dockerfile @@ -1,28 +1,13 @@ -# Separate build image! -#---------------------------- -FROM registry.gitlab.hpi.de/akita/i/python3-base:0.2.5 as build - -LABEL maintainer="yannik.schroeder@student.hpi.de" - -# install build dependencies -RUN apt-get update && apt-get install -y --no-install-recommends build-essential - -RUN python -m venv --system-site-packages /opt/venv -ENV PATH="/opt/venv/bin:$PATH" - -# build and install dependencies -RUN pip install cython -COPY requirements.txt . -RUN pip install -r ./requirements.txt -#---------------------------- - -FROM registry.gitlab.hpi.de/akita/i/python3-base:0.2.5 as runtime +FROM ghcr.io/timeeval/python3-base:0.3.0 LABEL maintainer="yannik.schroeder@student.hpi.de" +LABEL org.opencontainers.image.licenses=MIT ENV ALGORITHM_MAIN="/app/algorithm.py" -ENV PATH="/opt/venv/bin:$PATH" -COPY --from=build /opt/venv /opt/venv +COPY requirements.txt /app/ +RUN pip install -r /app/requirements.txt + COPY median_method.py /app/ +COPY manifest.json /app/ COPY algorithm.py /app/ diff --git a/median_method/manifest.json b/median_method/manifest.json index 7f7d04c..5824747 100644 --- a/median_method/manifest.json +++ b/median_method/manifest.json @@ -2,7 +2,7 @@ "title": "MedianMethod", "description": "Implementation of https://doi.org/10.1007/s10115-006-0026-6", "inputDimensionality": "univariate", - "version": "0.1", + "version": "0.3.0", "authors": "", "language": "Python", "type": "Detector", diff --git a/mscred/Dockerfile b/mscred/Dockerfile index 5214999..3e87581 100644 --- a/mscred/Dockerfile +++ b/mscred/Dockerfile @@ -1,6 +1,7 @@ -FROM registry.gitlab.hpi.de/akita/i/python3-torch:0.2.5 +FROM ghcr.io/timeeval/python3-torch:0.3.0 LABEL maintainer="phillip.wenig@hpi.de" +LABEL org.opencontainers.image.licenses=MIT ENV ALGORITHM_MAIN="/app/algorithm.py" @@ -9,4 +10,5 @@ COPY requirements.txt /app/ RUN pip install -r /app/requirements.txt COPY mscred /app/mscred +COPY manifest.json /app/ COPY algorithm.py /app/ diff --git a/mscred/manifest.json b/mscred/manifest.json index d9a09ab..18d8234 100644 --- a/mscred/manifest.json +++ b/mscred/manifest.json @@ -2,7 +2,7 @@ "title": "MSCRED", "description": "Implementation of https://doi.org/10.1609/aaai.v33i01.33011409", "inputDimensionality": "multivariate", - "version": "0.1", + "version": "0.3.0", "authors": "Chuxu Zhang, Dongjin Song, Yuncong Chen, Xinyang Feng, Cristian Lumezanu, Wei Cheng, Jingchao Ni, Bo Zong, Haifeng Chen, Nitesh V. Chawla", "language": "Python", "type": "Detector", diff --git a/mstamp/Dockerfile b/mstamp/Dockerfile index 2673b8c..fc4207b 100644 --- a/mstamp/Dockerfile +++ b/mstamp/Dockerfile @@ -1,10 +1,12 @@ -FROM registry.gitlab.hpi.de/akita/i/python3-base:0.2.5 +FROM ghcr.io/timeeval/python3-base:0.3.0 LABEL maintainer="phillip.wenig@hpi.de" +LABEL org.opencontainers.image.licenses="BSD-3-Clause" ENV ALGORITHM_MAIN="/app/algorithm.py" COPY requirements.txt /app/ -RUN pip install -r requirements.txt +RUN pip install -r /app/requirements.txt +COPY manifest.json /app/ COPY algorithm.py /app/ diff --git a/mstamp/manifest.json b/mstamp/manifest.json index df3683f..ebf5334 100644 --- a/mstamp/manifest.json +++ b/mstamp/manifest.json @@ -2,7 +2,7 @@ "title": "mSTAMP", "description": "Implementation of http://www.cs.ucr.edu/%7Eeamonn/Motif_Discovery_ICDM.pdf", "inputDimensionality": "multivariate", - "version": "0.1", + "version": "0.3.0", "authors": "Chin-Chia Michael Yeh, Nickolas Kavantzas, and Eamonn Keogh", "language": "Python", "type": "Detector", diff --git a/mtad_gat/Dockerfile b/mtad_gat/Dockerfile index 2e0b684..2a8b843 100644 --- a/mtad_gat/Dockerfile +++ b/mtad_gat/Dockerfile @@ -1,4 +1,4 @@ -FROM registry.gitlab.hpi.de/akita/i/python3-torch:0.2.5 as build +FROM ghcr.io/timeeval/python3-torch:0.3.0 as build COPY sr /app/sr @@ -11,12 +11,14 @@ RUN set -eux; \ RUN pip install Cython RUN cd /app/sr/; python setup.py install -FROM registry.gitlab.hpi.de/akita/i/python3-torch:0.2.5 as eval +FROM ghcr.io/timeeval/python3-torch:0.3.0 as eval LABEL maintainer="phillip.wenig@hpi.de" +LABEL org.opencontainers.image.licenses=MIT ENV ALGORITHM_MAIN="/app/algorithm.py" COPY --from=build /usr/local/lib/python3.7/site-packages /usr/local/lib/python3.7/site-packages COPY mtad_gat /app/mtad_gat +COPY manifest.json /app/ COPY algorithm.py /app/ diff --git a/mtad_gat/manifest.json b/mtad_gat/manifest.json index dcfbfe5..4764e2b 100644 --- a/mtad_gat/manifest.json +++ b/mtad_gat/manifest.json @@ -2,7 +2,7 @@ "title": "MTAD-GAT", "description": "Implementation of http://arxiv.org/abs/2009.02040", "inputDimensionality": "multivariate", - "version": "0.1", + "version": "0.3.0", "authors": "Hang Zhao, Yujing Wang, Juanyong Duan, Congrui Huang, Defu Cao, Yunhai Tong, Bixiong Xu, Jing Bai, Jie Tong, Qi Zhang", "language": "Python", "type": "Detector", diff --git a/multi_hmm/Dockerfile b/multi_hmm/Dockerfile index faad16f..7b440f5 100644 --- a/multi_hmm/Dockerfile +++ b/multi_hmm/Dockerfile @@ -1,11 +1,13 @@ -FROM registry.gitlab.hpi.de/akita/i/python3-base:0.2.5 +FROM ghcr.io/timeeval/python3-base:0.3.0 LABEL maintainer="phillip.wenig@hpi.de" +LABEL org.opencontainers.image.licenses=MIT ENV ALGORITHM_MAIN="/app/algorithm.py" COPY requirements.txt /app/ RUN pip install -r /app/requirements.txt -COPY algorithm.py /app/ COPY multi_hmm /app/multi_hmm +COPY manifest.json /app/ +COPY algorithm.py /app/ diff --git a/multi_hmm/manifest.json b/multi_hmm/manifest.json index 32e222a..095932c 100644 --- a/multi_hmm/manifest.json +++ b/multi_hmm/manifest.json @@ -2,7 +2,7 @@ "title": "MultiHMM", "description": "Implementation of https://doi.org/10.1016/j.asoc.2017.06.035", "inputDimensionality": "multivariate", - "version": "0.1", + "version": "0.3.0", "authors": "Jinbo Li, Witold Pedrycz, Iqbal Jamal", "language": "Python", "type": "Detector", diff --git a/multi_subsequence_lof/Dockerfile b/multi_subsequence_lof/Dockerfile index 62cb232..8df15b0 100644 --- a/multi_subsequence_lof/Dockerfile +++ b/multi_subsequence_lof/Dockerfile @@ -1,6 +1,7 @@ -FROM registry.gitlab.hpi.de/akita/i/pyod:0.2.5 +FROM ghcr.io/timeeval/pyod:0.3.0 LABEL maintainer="sebastian.schmidl@hpi.de" +LABEL org.opencontainers.image.licenses=MIT ENV ALGORITHM_MAIN="/app/algorithm.py" @@ -8,4 +9,5 @@ ENV ALGORITHM_MAIN="/app/algorithm.py" COPY requirements.txt /app/ RUN pip install -r /app/requirements.txt -COPY algorithm.py . +COPY manifest.json /app/ +COPY algorithm.py /app/ diff --git a/multi_subsequence_lof/manifest.json b/multi_subsequence_lof/manifest.json index eeaa744..3f7ec8d 100644 --- a/multi_subsequence_lof/manifest.json +++ b/multi_subsequence_lof/manifest.json @@ -2,7 +2,7 @@ "title": "Multi-Sub-LOF", "description": "LOF on sliding windows of multivariate time series to detect subsequence anomalies.", "inputDimensionality": "multivariate", - "version": "0.1", + "version": "0.3.0", "authors": "Sebastian Schmidl, Niklas Köhnecke", "language": "Python", "type": "Detector", diff --git a/mvalmod/Dockerfile b/mvalmod/Dockerfile index 2e3f4e1..2a9a036 100644 --- a/mvalmod/Dockerfile +++ b/mvalmod/Dockerfile @@ -1,6 +1,7 @@ -FROM registry.gitlab.hpi.de/akita/i/tsmp:0.2.5 +FROM ghcr.io/timeeval/tsmp:0.3.0 LABEL maintainer="sebastian.schmidl@hpi.de" +LABEL org.opencontainers.image.licenses=MIT ENV ALGORITHM_MAIN="/app/algorithm.r" diff --git a/mvalmod/manifest.json b/mvalmod/manifest.json index 13698c9..43f7c47 100644 --- a/mvalmod/manifest.json +++ b/mvalmod/manifest.json @@ -2,7 +2,7 @@ "title": "mVALMOD", "description": "Implementation of https://doi.org/10.1007/s10618-020-00685-w summed up for every channel.", "inputDimensionality": "multivariate", - "version": "0.1", + "version": "0.3.0", "authors": "Michele Linardi, Yan Zhu, Themis Palpanas, Eamonn Keogh", "language": "R", "type": "Detector", diff --git a/norma/manifest.json b/norma/manifest.json index 88b08e0..b013fe8 100644 --- a/norma/manifest.json +++ b/norma/manifest.json @@ -2,7 +2,7 @@ "title": "NormA", "description": "Improved algorithm based on NorM (https://doi.org/10.1109/ICDE48307.2020.00182).", "inputDimensionality": "univariate", - "version": "0.1", + "version": "0.3.0", "authors": "Paul Boniol, Michele Linardi, Federico Roncallo, Themis Palpanas", "language": "Python", "type": "Detector", diff --git a/normalizing_flows/Dockerfile b/normalizing_flows/Dockerfile index 22e2e71..b69c4e8 100644 --- a/normalizing_flows/Dockerfile +++ b/normalizing_flows/Dockerfile @@ -1,10 +1,11 @@ -FROM registry.gitlab.hpi.de/akita/i/python3-torch:0.2.5 +FROM ghcr.io/timeeval/python3-torch:0.3.0 LABEL maintainer="phillip.wenig@hpi.de" +LABEL org.opencontainers.image.licenses=MIT ENV ALGORITHM_MAIN="/app/algorithm.py" COPY requirements.txt /app/ RUN pip install -r /app/requirements.txt -COPY . /app +COPY . /app/ diff --git a/normalizing_flows/manifest.json b/normalizing_flows/manifest.json index 996b33c..8f6a0a8 100644 --- a/normalizing_flows/manifest.json +++ b/normalizing_flows/manifest.json @@ -2,7 +2,7 @@ "title": "Normalizing Flows", "description": "Implementation of https://arxiv.org/abs/1912.09323", "inputDimensionality": "multivariate", - "version": "0.1", + "version": "0.3.0", "authors": "Artem Ryzhikov, Maxim Borisyak, Andrey Ustyuzhanin, Denis Derkach", "language": "Python", "type": "Detector", diff --git a/novelty_svr/Dockerfile b/novelty_svr/Dockerfile index 1b398fa..83d342e 100644 --- a/novelty_svr/Dockerfile +++ b/novelty_svr/Dockerfile @@ -1,13 +1,15 @@ -FROM registry.gitlab.hpi.de/akita/i/python3-base:0.2.5 +FROM ghcr.io/timeeval/python3-base:0.3.0 + LABEL maintainer="sebastian.schmidl@hpi.de" +LABEL org.opencontainers.image.licenses="GPL-3.0" ENV ALGORITHM_MAIN="/app/algorithm.py" # install python dependencies -COPY requirements.txt . -RUN pip install -r ./requirements.txt +COPY requirements.txt /app/ +RUN pip install -r /app/requirements.txt -COPY model.py . -COPY algorithm.py . -COPY manifest.json . +COPY model.py /app/ +COPY manifest.json /app/ +COPY algorithm.py /app/ diff --git a/novelty_svr/manifest.json b/novelty_svr/manifest.json index 2e142be..2b65ea3 100644 --- a/novelty_svr/manifest.json +++ b/novelty_svr/manifest.json @@ -2,7 +2,7 @@ "title": "NoveltySVR", "description": "Implementation of https://doi.org/10.1145/956750.956828.", "inputDimensionality": "univariate", - "version": "0.1", + "version": "0.3.0", "authors": "Junshui Ma and Simon Perkins", "language": "Python", "type": "Detector", diff --git a/numenta_htm/Dockerfile b/numenta_htm/Dockerfile index 259b062..1c5624c 100644 --- a/numenta_htm/Dockerfile +++ b/numenta_htm/Dockerfile @@ -1,12 +1,25 @@ -FROM gitlab.hpi.de/akita/dependency_proxy/containers/numenta/nupic:latest as numenta +FROM ghcr.io/timeeval/python2-base:0.3.0 as build -FROM registry.gitlab.hpi.de/akita/i/python2-base:0.2.5 as timeeval +RUN set -eux; \ + apt-get update; \ + apt-get install -y --no-install-recommends build-essential; \ + apt-get clean; \ + rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* + +RUN pip install nupic + +# FROM ghcr.io/timeeval/python2-base:0.3.0 as timeeval LABEL maintainer="phillip.wenig@hpi.de" +LABEL org.opencontainers.image.licenses="GPL-3.0" ENV ALGORITHM_MAIN="/app/algorithm.py" -COPY --from=numenta /usr/local/lib/python2.7/dist-packages /usr/local/lib/python2.7/site-packages +# COPY --from=build /usr/local/lib/python2.7/site-packages /usr/local/lib/python2.7/site-packages +# RUN pip install nupic + +RUN pip install python-dateutil==2.5.0 COPY ./htm /app/htm +COPY manifest.json /app/ COPY algorithm.py /app/ diff --git a/numenta_htm/manifest.json b/numenta_htm/manifest.json index a195f9f..00bd1dd 100644 --- a/numenta_htm/manifest.json +++ b/numenta_htm/manifest.json @@ -2,7 +2,7 @@ "title": "NumentaHTM", "description": "Implementation of https://doi.org/10.1016/j.neucom.2017.04.070", "inputDimensionality": "univariate", - "version": "0.1", + "version": "0.3.0", "authors": "Subutai Ahmad, Alexander Lavin, Scott Purdy, Zuha Agha", "language": "Python", "type": "Detector",