Skip to content

Commit 8f01c47

Browse files
committed
more
1 parent 76cac17 commit 8f01c47

36 files changed

+1611
-546
lines changed

.devel/sphinx/bibliography.bib

+12-12
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
1-
@misc{nca,
1+
@article{nca,
22
author = {M. Gagolewski},
33
title = {Normalised clustering accuracy: {A}n asymmetric external cluster validity measure},
4-
year = {2023},
5-
publisher = {arXiv},
6-
doi = {10.48550/arXiv.2209.02935},
7-
url = {https://arxiv.org/pdf/2209.02935.pdf},
8-
note = {under review (preprint)}
4+
journal = {Journal of Classification},
5+
year = {2024},
6+
url = {https://link.springer.com/content/pdf/10.1007/s00357-024-09482-2.pdf},
7+
doi = {10.1007/s00357-024-09482-2},
8+
note = {in press}
99
}
1010

11-
@misc{cvimst,
11+
@article{cvimst,
1212
author = {M. Gagolewski and A. Cena and M. Bartoszuk and L. Brzozowski},
1313
title = {Clustering with minimum spanning trees: {H}ow good can it be?},
14-
year = {2023},
15-
publisher = {arXiv},
16-
doi = {10.48550/arXiv.2303.05679},
17-
preprint = {https://arxiv.org/pdf/2303.05679.pdf},
18-
note = {under review (preprint)}
14+
journal = {Journal of Classification},
15+
year = {2024},
16+
url = {https://link.springer.com/content/pdf/10.1007/s00357-024-09483-1.pdf},
17+
doi = {10.1007/s00357-024-09483-1},
18+
note = {in press}
1919
}
2020

2121
@article{clustering_benchmarks,

.devel/sphinx/news.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
4+
## 1.1.5 (pending)
5+
6+
- Minor extensions/updates.
7+
8+
39
## 1.1.4 (2023-12-12)
410

511
- [BUGFIX] #5: `load_dataset` threw an `OSError` while trying to load
@@ -20,7 +26,7 @@
2026
## 1.1.0 (2022-09-17)
2127

2228
- The project's homepage was created. It is available at
23-
<https://clustering-benchmarks.gagolewski.com>.
29+
<https://clustering-benchmarks.gagolewski.com/>.
2430

2531
- Python package `clustering-benchmarks` released on PyPI.
2632

NEWS

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
4+
## 1.1.5 (pending)
5+
6+
- Minor extensions/updates.
7+
8+
39
## 1.1.4 (2023-12-12)
410

511
- [BUGFIX] #5: `load_dataset` threw an `OSError` while trying to load
@@ -20,7 +26,7 @@
2026
## 1.1.0 (2022-09-17)
2127

2228
- The project's homepage was created. It is available at
23-
<https://clustering-benchmarks.gagolewski.com>.
29+
<https://clustering-benchmarks.gagolewski.com/>.
2430

2531
- Python package `clustering-benchmarks` released on PyPI.
2632

clustbench/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
# ############################################################################ #
2222

2323
# version string, e.g., "1.0.0.9001" or "1.1.1"
24-
__version__ = "1.1.4"
24+
__version__ = "1.1.5"
2525

2626

2727
from .get_names import get_dataset_names, get_battery_names

docs/_static/basic.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* Sphinx stylesheet -- basic theme.
66
*
7-
* :copyright: Copyright 2007-2023 by the Sphinx team, see AUTHORS.
7+
* :copyright: Copyright 2007-2024 by the Sphinx team, see AUTHORS.
88
* :license: BSD, see LICENSE for details.
99
*
1010
*/

docs/_static/doctools.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* Base JavaScript utilities for all Sphinx HTML documentation.
66
*
7-
* :copyright: Copyright 2007-2023 by the Sphinx team, see AUTHORS.
7+
* :copyright: Copyright 2007-2024 by the Sphinx team, see AUTHORS.
88
* :license: BSD, see LICENSE for details.
99
*
1010
*/

docs/_static/documentation_options.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
const DOCUMENTATION_OPTIONS = {
2-
VERSION: '1.1.4',
2+
VERSION: '1.1.5',
33
LANGUAGE: 'en',
44
COLLAPSE_INDEX: false,
55
BUILDER: 'html',

docs/_static/graphviz.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* Sphinx stylesheet -- graphviz extension.
66
*
7-
* :copyright: Copyright 2007-2023 by the Sphinx team, see AUTHORS.
7+
* :copyright: Copyright 2007-2024 by the Sphinx team, see AUTHORS.
88
* :license: BSD, see LICENSE for details.
99
*
1010
*/

docs/_static/language_data.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@
55
* This script contains the language-specific data used by searchtools.js,
66
* namely the list of stopwords, stemmer, scorer and splitter.
77
*
8-
* :copyright: Copyright 2007-2023 by the Sphinx team, see AUTHORS.
8+
* :copyright: Copyright 2007-2024 by the Sphinx team, see AUTHORS.
99
* :license: BSD, see LICENSE for details.
1010
*
1111
*/
1212

1313
var stopwords = ["a", "and", "are", "as", "at", "be", "but", "by", "for", "if", "in", "into", "is", "it", "near", "no", "not", "of", "on", "or", "such", "that", "the", "their", "then", "there", "these", "they", "this", "to", "was", "will", "with"];
1414

1515

16-
/* Non-minified version is copied as a separate JS file, is available */
16+
/* Non-minified version is copied as a separate JS file, if available */
1717

1818
/**
1919
* Porter Stemmer

docs/_static/pygments.css

+6-6
Original file line numberDiff line numberDiff line change
@@ -97,17 +97,17 @@ body[data-theme="dark"] .highlight .cp { color: #ff3a3a; font-weight: bold } /*
9797
body[data-theme="dark"] .highlight .cpf { color: #ababab; font-style: italic } /* Comment.PreprocFile */
9898
body[data-theme="dark"] .highlight .c1 { color: #ababab; font-style: italic } /* Comment.Single */
9999
body[data-theme="dark"] .highlight .cs { color: #e50808; font-weight: bold; background-color: #520000 } /* Comment.Special */
100-
body[data-theme="dark"] .highlight .gd { color: #d22323 } /* Generic.Deleted */
100+
body[data-theme="dark"] .highlight .gd { color: #ff3a3a } /* Generic.Deleted */
101101
body[data-theme="dark"] .highlight .ge { color: #d0d0d0; font-style: italic } /* Generic.Emph */
102102
body[data-theme="dark"] .highlight .ges { color: #d0d0d0; font-weight: bold; font-style: italic } /* Generic.EmphStrong */
103-
body[data-theme="dark"] .highlight .gr { color: #d22323 } /* Generic.Error */
103+
body[data-theme="dark"] .highlight .gr { color: #ff3a3a } /* Generic.Error */
104104
body[data-theme="dark"] .highlight .gh { color: #ffffff; font-weight: bold } /* Generic.Heading */
105105
body[data-theme="dark"] .highlight .gi { color: #589819 } /* Generic.Inserted */
106106
body[data-theme="dark"] .highlight .go { color: #cccccc } /* Generic.Output */
107107
body[data-theme="dark"] .highlight .gp { color: #aaaaaa } /* Generic.Prompt */
108108
body[data-theme="dark"] .highlight .gs { color: #d0d0d0; font-weight: bold } /* Generic.Strong */
109109
body[data-theme="dark"] .highlight .gu { color: #ffffff; text-decoration: underline } /* Generic.Subheading */
110-
body[data-theme="dark"] .highlight .gt { color: #d22323 } /* Generic.Traceback */
110+
body[data-theme="dark"] .highlight .gt { color: #ff3a3a } /* Generic.Traceback */
111111
body[data-theme="dark"] .highlight .kc { color: #6ebf26; font-weight: bold } /* Keyword.Constant */
112112
body[data-theme="dark"] .highlight .kd { color: #6ebf26; font-weight: bold } /* Keyword.Declaration */
113113
body[data-theme="dark"] .highlight .kn { color: #6ebf26; font-weight: bold } /* Keyword.Namespace */
@@ -183,17 +183,17 @@ body:not([data-theme="light"]) .highlight .cp { color: #ff3a3a; font-weight: bol
183183
body:not([data-theme="light"]) .highlight .cpf { color: #ababab; font-style: italic } /* Comment.PreprocFile */
184184
body:not([data-theme="light"]) .highlight .c1 { color: #ababab; font-style: italic } /* Comment.Single */
185185
body:not([data-theme="light"]) .highlight .cs { color: #e50808; font-weight: bold; background-color: #520000 } /* Comment.Special */
186-
body:not([data-theme="light"]) .highlight .gd { color: #d22323 } /* Generic.Deleted */
186+
body:not([data-theme="light"]) .highlight .gd { color: #ff3a3a } /* Generic.Deleted */
187187
body:not([data-theme="light"]) .highlight .ge { color: #d0d0d0; font-style: italic } /* Generic.Emph */
188188
body:not([data-theme="light"]) .highlight .ges { color: #d0d0d0; font-weight: bold; font-style: italic } /* Generic.EmphStrong */
189-
body:not([data-theme="light"]) .highlight .gr { color: #d22323 } /* Generic.Error */
189+
body:not([data-theme="light"]) .highlight .gr { color: #ff3a3a } /* Generic.Error */
190190
body:not([data-theme="light"]) .highlight .gh { color: #ffffff; font-weight: bold } /* Generic.Heading */
191191
body:not([data-theme="light"]) .highlight .gi { color: #589819 } /* Generic.Inserted */
192192
body:not([data-theme="light"]) .highlight .go { color: #cccccc } /* Generic.Output */
193193
body:not([data-theme="light"]) .highlight .gp { color: #aaaaaa } /* Generic.Prompt */
194194
body:not([data-theme="light"]) .highlight .gs { color: #d0d0d0; font-weight: bold } /* Generic.Strong */
195195
body:not([data-theme="light"]) .highlight .gu { color: #ffffff; text-decoration: underline } /* Generic.Subheading */
196-
body:not([data-theme="light"]) .highlight .gt { color: #d22323 } /* Generic.Traceback */
196+
body:not([data-theme="light"]) .highlight .gt { color: #ff3a3a } /* Generic.Traceback */
197197
body:not([data-theme="light"]) .highlight .kc { color: #6ebf26; font-weight: bold } /* Keyword.Constant */
198198
body:not([data-theme="light"]) .highlight .kd { color: #6ebf26; font-weight: bold } /* Keyword.Declaration */
199199
body:not([data-theme="light"]) .highlight .kn { color: #6ebf26; font-weight: bold } /* Keyword.Namespace */

docs/_static/scripts/furo.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/_static/scripts/furo.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)