提交 143b16e9 编辑于 作者: Haowen Xu's avatar Haowen Xu
浏览文件

switch to @haowen-xu

上级 1d0a743e
加载中
加载中
加载中
加载中
+2 −2
原始行号 差异行号 差异行
@@ -9,7 +9,7 @@ env:
  - PYTHON_VERSION=2 TENSORFLOW_VERSION=1.8
  - PYTHON_VERSION=3 TENSORFLOW_VERSION=1.8
install:
  - docker pull "ipwx/travis-tensorflow-docker:py${PYTHON_VERSION}tf${TENSORFLOW_VERSION}"
  - docker pull "haowenxu/travis-tensorflow-docker:py${PYTHON_VERSION}tf${TENSORFLOW_VERSION}"
script:
  - docker run
      -v "$(pwd)":"$(pwd)"
@@ -17,5 +17,5 @@ script:
      -e TRAVIS="${TRAVIS}"
      -e TRAVIS_JOB_ID="${TRAVIS_JOB_ID}"
      -e TRAVIS_BRANCH="${TRAVIS_BRANCH}"
      "ipwx/travis-tensorflow-docker:py${PYTHON_VERSION}tf${TENSORFLOW_VERSION}"
      "haowenxu/travis-tensorflow-docker:py${PYTHON_VERSION}tf${TENSORFLOW_VERSION}"
      bash -c "pip install -r requirements-dev.txt && coverage run -m py.test && coveralls"
+6 −6
原始行号 差异行号 差异行
DONUT
=====

.. image:: https://travis-ci.org/korepwx/donut.svg?branch=master
    :target: https://travis-ci.org/korepwx/donut
.. image:: https://coveralls.io/repos/github/korepwx/donut/badge.svg?branch=master
    :target: https://coveralls.io/github/korepwx/donut?branch=master
.. image:: https://travis-ci.org/haowen-xu/donut.svg?branch=master
    :target: https://travis-ci.org/haowen-xu/donut
.. image:: https://coveralls.io/repos/github/haowen-xu/donut/badge.svg?branch=master
    :target: https://coveralls.io/github/haowen-xu/donut?branch=master

Donut is an anomaly detection algorithm for seasonal KPIs.

@@ -29,11 +29,11 @@ Checkout this repository and execute:
.. code-block:: bash

    pip install git+https://github.com/thu-ml/zhusuan.git
    pip install git+https://github.com/korepwx/tfsnippet.git
    pip install git+https://github.com/haowen-xu/tfsnippet.git
    pip install .

This will first install `ZhuSuan <https://github.com/thu-ml/zhusuan>`_ and
`TFSnippet <https://github.com/korepwx/tfsnippet>`_, the two major dependencies
`TFSnippet <https://github.com/haowen-xu/tfsnippet>`_, the two major dependencies
of Donut, then install the Donut package itself.

API Usage
+1 −5
原始行号 差异行号 差异行
numpy >= 1.12.1
six >= 1.11.0
tensorflow >= 1.4.0
git+https://github.com/thu-ml/zhusuan.git
git+https://github.com/korepwx/tfsnippet.git
-r requirements.txt

mock >= 2.0.0
pytest >= 3.0
+1 −1
原始行号 差异行号 差异行
@@ -2,4 +2,4 @@ numpy >= 1.12.1
six >= 1.11.0
tensorflow >= 1.4.0
git+https://github.com/thu-ml/zhusuan.git
git+https://github.com/korepwx/tfsnippet.git
git+https://github.com/haowen-xu/tfsnippet.git
+2 −2
原始行号 差异行号 差异行
@@ -39,10 +39,10 @@ install_requires = [s for s in requirements_list if not s.startswith('git+')]
setup(
    name='Donut',
    version=version,
    url='https://github.com/korepwx/donut/',
    url='https://github.com/haowen-xu/donut/',
    license='MIT',
    author='Haowen Xu',
    author_email='public@korepwx.com',
    author_email='haowen.xu@outlook.com',
    description='Donut is an anomaly detection algorithm for periodic KPIs.',
    long_description=__doc__,
    packages=find_packages('.', include=['donut', 'donut.*']),