Skip to content

Commit

Permalink
version 2.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
mgckind committed Nov 14, 2019
1 parent c7f55a2 commit b50f808
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 4 deletions.
6 changes: 6 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
include Readme.md
include eif.hxx
include __eif.pxd
include _eif.pyx
include eif.cxx
include figures/*
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<a href="https://github.com/sahandha/eif/releases/tag/v2.0.0"> <img src="https://img.shields.io/badge/release-v2.0.0-green.svg" alt="latest release" /></a><a href="https://pypi.org/project/eif/2.0.0/"><img src="https://img.shields.io/badge/pypi-v2.0.0-orange.svg" alt="pypi version"/></a><a href="https://doi.org/10.1109/TKDE.2019.2947676"><img src="https://img.shields.io/badge/DOI-10.1109%2FTKDE.2019.2947676-blue.svg"></a>
<a href="https://github.com/sahandha/eif/releases/tag/v2.0.2"> <img src="https://img.shields.io/badge/release-v2.0.2-green.svg" alt="latest release" /></a><a href="https://pypi.org/project/eif/2.0.2/"><img src="https://img.shields.io/badge/pypi-v2.0.2-orange.svg" alt="pypi version"/></a><a href="https://doi.org/10.1109/TKDE.2019.2947676"><img src="https://img.shields.io/badge/DOI-10.1109%2FTKDE.2019.2947676-blue.svg"></a>

## Table of contents
- [Extended Isolation Forest](#Extended-Isolation-Forest)
Expand Down Expand Up @@ -96,6 +96,12 @@ Here we provide the source code for the algorithm as well as documented example
## Installation


pip install eif


or directly from the repository


pip install git+https://github.com/sahandha/eif.git


Expand Down Expand Up @@ -138,7 +144,7 @@ month={},}

## Releases

### v2.0.0
### v2.0.2
#### 2019-NOV-14
- Convert code into C++ with using cython. Much faster and efficient forest generation and scoring procedures

Expand Down
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,10 @@ def read(filename):
py_modules=['eif_old', 'version'],
packages=[],
license='License.txt',
include_package_data=True,
description='Extended Isolation Forest for anomaly detection',
#long_description=read('README.md'),
long_description=read('README.md'),
long_description_content_type='text/markdown',
url='https://github.com/sahandha/eif',
install_requires=["numpy", "cython"],
)
2 changes: 1 addition & 1 deletion version.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Extended Isolation Forest version"""

version_tag = (2, 0, 0)
version_tag = (2, 0, 2)
__version__ = '.'.join(map(str, version_tag[:3]))

if len(version_tag) > 3:
Expand Down

0 comments on commit b50f808

Please sign in to comment.