Skip to content

Commit

Permalink
Merge pull request #206 from yzhao062/development
Browse files Browse the repository at this point in the history
V 0.8.1
  • Loading branch information
yzhao062 authored Jul 1, 2020
2 parents 7cb7eef + 238b2dd commit bd1835d
Show file tree
Hide file tree
Showing 6 changed files with 31 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ env:
PIP_PREFER_BINARY=true # https://github.com/numba/llvmlite/issues/471

python:
- "2.7"
# - "2.7" # disabled due to keras https://travis-ci.org/github/yzhao062/pyod/jobs/703534508
# - "3.5" # disabled for now as warning messages crash travis ci. turn it back in 3.5.7
- "3.5-dev" # 3.5 development branch
- "3.6"
Expand Down
1 change: 1 addition & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ v<0.7.9>, <04/20/2020> -- Relax the number of n_neighbors in ABOD and COF.
v<0.7.9>, <05/01/2020> -- Extend Vanilla VAE to Beta VAE by Dr Andrij Vasylenko.
v<0.7.9>, <05/01/2020> -- Add Conda Badge.
v<0.8.0>, <05/18/2020> -- Update test frameworks by reflecting sklearn change.
v<0.8.1>, <07/11/2020> -- Bug fix and documentation update



Expand Down
13 changes: 12 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,8 @@ Python Outlier Detection (PyOD)

-----

PyOD is a comprehensive and scalable **Python toolkit** for **detecting outlying objects** in

PyOD is a comprehensive and scalable **Python toolkit** for **detecting outlying objects** in
multivariate data. This exciting yet challenging field is commonly referred as
`Outlier Detection <https://en.wikipedia.org/wiki/Anomaly_detection>`_
or `Anomaly Detection <https://en.wikipedia.org/wiki/Anomaly_detection>`_.
Expand Down Expand Up @@ -172,6 +173,16 @@ or::
----


The project is free of charge thanks to community sponsorship. Check out the banner below to support us :)


.. image:: https://images.gitads.io/pyod
:target: https://tracking.gitads.io/?repo=pyod
:alt: sponsorship

----


Installation
^^^^^^^^^^^^

Expand Down
11 changes: 11 additions & 0 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,17 @@ or::
----


The project is free of charge thanks to community sponsorship. Check out the banner below to support us :)


.. image:: https://images.gitads.io/pyod
:target: https://tracking.gitads.io/?repo=pyod
:alt: sponsorship


----


Implemented Algorithms
======================

Expand Down
7 changes: 5 additions & 2 deletions environment.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
name: pyod
dependencies:
- combo
- keras
- matplotlib
- nose
Expand All @@ -9,6 +8,10 @@ dependencies:
- pandas
- scikit-learn
- scipy
- suod
- tensorflow
- xgboost
- pip
- pip:
- suod
- combo

2 changes: 1 addition & 1 deletion pyod/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@
# Dev branch marker is: 'X.Y.dev' or 'X.Y.devN' where N is an integer.
# 'X.Y.dev0' is the canonical version of 'X.Y.dev'
#
__version__ = '0.8.0' # pragma: no cover
__version__ = '0.8.1' # pragma: no cover

0 comments on commit bd1835d

Please sign in to comment.