From 9dea8f99cb677653ecf6be51bf882951ffc3f2ac Mon Sep 17 00:00:00 2001 From: sepandhaghighi Date: Thu, 26 Dec 2024 14:52:54 +0330 Subject: [PATCH 1/7] doc : n --> N --- Document/Distance.ipynb | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Document/Distance.ipynb b/Document/Distance.ipynb index 2336aee9..6393fb98 100644 --- a/Document/Distance.ipynb +++ b/Document/Distance.ipynb @@ -3065,7 +3065,7 @@ "source": [ "$$corr_{KuhnsIII} =\n", "\\frac{\\delta(TP + FP, TP + FN)}\n", - "{(1-\\frac{TP}{2 \\times TP + FP + FN})(2 \\times TP + FP + FN-\\frac{(TP + FP)(TP + FN)}{n})}\n", + "{(1-\\frac{TP}{2 \\times TP + FP + FN})(2 \\times TP + FP + FN-\\frac{(TP + FP)(TP + FN)}{N})}\n", "$$\n", "\n", "$$\n", @@ -3179,7 +3179,7 @@ "source": [ "$$corr_{KuhnsV} =\n", "\\frac{\\delta(TP + FP, TP + FN)}\n", - "{\\max((TP+FP)(1-\\frac{TP+FP}{n}), (TP+FN)(1-\\frac{TP+FN}{n}))}\n", + "{\\max((TP+FP)(1-\\frac{TP+FP}{N}), (TP+FN)(1-\\frac{TP+FN}{N}))}\n", "$$\n", "\n", "$$\n", @@ -3236,7 +3236,7 @@ "source": [ "$$corr_{KuhnsVI} =\n", "\\frac{\\delta(TP + FP, TP + FN)}\n", - "{\\min((TP+FP)(1-\\frac{TP+FP}{n}), (TP+FN)(1-\\frac{TP+FN}{n}))}\n", + "{\\min((TP+FP)(1-\\frac{TP+FP}{N}), (TP+FN)(1-\\frac{TP+FN}{N}))}\n", "$$\n", "\n", "$$\n", @@ -3425,7 +3425,7 @@ ], "metadata": { "kernelspec": { - "display_name": ".venv", + "display_name": "Python 3", "language": "python", "name": "python3" }, @@ -3439,7 +3439,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.10.12" + "version": "3.5.2" }, "toc": { "base_numbering": 1, From ff54fedaf1dab3c8a4e574184cbdb702a980b645 Mon Sep 17 00:00:00 2001 From: sepandhaghighi Date: Thu, 26 Dec 2024 14:55:50 +0330 Subject: [PATCH 2/7] doc : KuhnsVII_calc docstring updated --- pycm/distance.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pycm/distance.py b/pycm/distance.py index dc431845..dbe231a8 100644 --- a/pycm/distance.py +++ b/pycm/distance.py @@ -1448,7 +1448,7 @@ def KuhnsVII_calc(TP, FP, FN, TN): :type FP: int :param FN: false negative :type FN: int - :return: Kuhns VI correlation as float + :return: Kuhns VII correlation as float """ try: n = TP + FP + FN + TN From 4af52006714a2af451351b0c5195e3c21e9a6c1c Mon Sep 17 00:00:00 2001 From: sepandhaghighi Date: Thu, 26 Dec 2024 14:58:36 +0330 Subject: [PATCH 3/7] doc : AUTHORS.md updated --- AUTHORS.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/AUTHORS.md b/AUTHORS.md index 59fcb36e..ad02f361 100644 --- a/AUTHORS.md +++ b/AUTHORS.md @@ -1,5 +1,4 @@ -# Authors - +# Core Developers ---------- - Sepand Haghighi - Open Science Laboratory ([Github](https://github.com/sepandhaghighi)) ** - Alireza Zolanvari - Open Science Laboratory ([Github](https://github.com/AlirezaZolanvari)) ** @@ -11,10 +10,11 @@ # Other Contributors ---------- -- [Sohee Yang](https://github.com/soheeyang) -- [Mohammad Mahdi Rahimi](https://github.com/mahi97) -- [Christian Clauss](https://github.com/cclauss) -- [Negar Zabetian](https://github.com/negarzabetian) -- [Ashwin Geet D'Sa](https://github.com/GeetDsa) -- [Ilya Gubins](https://github.com/the-lay) -- [Lewi Uberg](https://github.com/lewiuberg) +- [@soheeyang](https://github.com/soheeyang) +- [@mahi97](https://github.com/mahi97) +- [@cclauss](https://github.com/cclauss) +- [@negarzabetian](https://github.com/negarzabetian) +- [@GeetDsa](https://github.com/GeetDsa) +- [@the-lay](https://github.com/the-lay) +- [@lewiuberg](https://github.com/lewiuberg) +- [@AHReccese](https://github.com/AHReccese) From 0bee3f6aff01d17ae7a6830a36095940193144c7 Mon Sep 17 00:00:00 2001 From: sepandhaghighi Date: Thu, 26 Dec 2024 14:59:25 +0330 Subject: [PATCH 4/7] doc : pypi badge height bug fixed --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 68398939..24c45133 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ built with Python3 -PyPI version +PyPI version Document Discord Channel From beb328433aa26027f99b1825d7a4211d7cb4c27f Mon Sep 17 00:00:00 2001 From: sepandhaghighi Date: Thu, 26 Dec 2024 15:01:16 +0330 Subject: [PATCH 5/7] doc : repo-size badge added --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 24c45133..431392aa 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,7 @@

PyCM: Python Confusion Matrix


built with Python3 +GitHub repo size PyPI version From b496cbd73ab844a7615807fefd43a86eda3e12a9 Mon Sep 17 00:00:00 2001 From: sepandhaghighi Date: Thu, 26 Dec 2024 15:01:59 +0330 Subject: [PATCH 6/7] doc : CHANGELOG.md updated --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 094f924f..e6208c41 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ### Changed - PyPI badge in `README.md` - GitHub actions are limited to the `dev` and `master` branches +- `AUTHORS.md` updated +- `README.md` modified ## [4.1] - 2024-10-17 ### Added - 5 new distance/similarity From f5ce267a0238e1005f53b03e3ff2723e5beaa9e7 Mon Sep 17 00:00:00 2001 From: sepandhaghighi Date: Thu, 26 Dec 2024 15:04:39 +0330 Subject: [PATCH 7/7] doc : CHANGELOG.md updated --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index e6208c41..0efe25c9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - GitHub actions are limited to the `dev` and `master` branches - `AUTHORS.md` updated - `README.md` modified +- Document modified ## [4.1] - 2024-10-17 ### Added - 5 new distance/similarity