Skip to content

Commit bad0059

Browse files
committed
Update to version 0.3.1
1 parent 28b36a5 commit bad0059

File tree

7 files changed

+11
-222
lines changed

7 files changed

+11
-222
lines changed

CHANGES.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,4 +47,5 @@ v<0.3.0>, <03/19/2023> -- Updated clf thresholder
4747
v<0.3.0>, <03/20/2023> -- Added GNBM model to meta
4848
v<0.3.1>, <04/13/2023> -- Added pre-commit and formatted
4949
v<0.3.1>, <04/27/2023> -- Added grp and srp methods to decomp
50-
v<0.3.1>, <04/27/2023> -- Python 3.11 support
50+
v<0.3.1>, <05/02/2023> -- Python 3.11
51+
v<0.3.1>, <05/03/2023> -- Removed ALL thresholder

README.rst

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,10 @@
4040
:target: https://github.com/KulikDM/pythresh/blob/master/LICENSE
4141
:alt: License
4242

43+
.. image:: https://zenodo.org/badge/497683169.svg
44+
:target: https://zenodo.org/badge/latestdoi/497683169
45+
:alt: Zenodo DOI
46+
4347
----
4448

4549
PyThresh is a comprehensive and scalable **Python toolkit** for
@@ -236,8 +240,6 @@ Unsupervised Anomaly Detection <https://arxiv.org/abs/2210.10487>`_
236240
+-----------+-------------------------------------------+--------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+
237241
| ZSCORE | Z-score | [#zscore1]_ | `pythresh.thresholds.zscore module <https://pythresh.readthedocs.io/en/latest/pythresh.thresholds.html#module-pythresh.thresholds.zscore>`_ |
238242
+-----------+-------------------------------------------+--------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+
239-
| ALL | All Thresholders Combined | None | `pythresh.thresholds.all module <https://pythresh.readthedocs.io/en/latest/pythresh.thresholds.html#module-pythresh.thresholds.all>`_ |
240-
+-----------+-------------------------------------------+--------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+
241243
| COMB | Thresholder Combination | None | `pythresh.thresholds.comb module <https://pythresh.readthedocs.io/en/latest/pythresh.thresholds.html#module-pythresh.thresholds.comb>`_ |
242244
+-----------+-------------------------------------------+--------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------+
243245

docs/index.rst

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,10 @@
4040
:target: https://github.com/KulikDM/pythresh/blob/master/LICENSE
4141
:alt: License
4242

43+
.. image:: https://zenodo.org/badge/497683169.svg
44+
:target: https://zenodo.org/badge/latestdoi/497683169
45+
:alt: Zenodo DOI
46+
4347
----
4448

4549
PyThresh is a comprehensive and scalable **Python toolkit** for
@@ -173,8 +177,6 @@ Unsupervised Anomaly Detection <https://arxiv.org/abs/2210.10487>`_
173177
+-----------+----------------------------------------------------------------+-----------------------------------+
174178
| ZSCORE | Z-score | :cite:`bagdonavicius2020zscore` |
175179
+-----------+----------------------------------------------------------------+-----------------------------------+
176-
| ALL | All Thresholders Combined | |
177-
+-----------+----------------------------------------------------------------+-----------------------------------+
178180
| COMB | Thresholder Combination | |
179181
+-----------+----------------------------------------------------------------+-----------------------------------+
180182

docs/pythresh.thresholds.rst

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,6 @@
22
All Models
33
############
44

5-
********************************
6-
pythresh.thresholds.all module
7-
********************************
8-
9-
.. automodule:: pythresh.thresholds.all
10-
:members:
11-
:exclude-members:
12-
:undoc-members:
13-
:show-inheritance:
14-
:inherited-members:
15-
165
*********************************
176
pythresh.thresholds.aucp module
187
*********************************

pythresh/test/test_all.py

Lines changed: 0 additions & 44 deletions
This file was deleted.

pythresh/thresholds/all.py

Lines changed: 0 additions & 161 deletions
This file was deleted.

pythresh/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
# Based on NiLearn package
33
# License: simplified BSD
44

5-
__version__ = '0.3.0' # pragma: no cover
5+
__version__ = '0.3.1' # pragma: no cover

0 commit comments

Comments
 (0)