File tree Expand file tree Collapse file tree 4 files changed +34
-14
lines changed
Expand file tree Collapse file tree 4 files changed +34
-14
lines changed Original file line number Diff line number Diff line change 1+ # Changelog
2+
3+ ## [ 0.1] - 2025-10-17
4+ ### Added
5+ - ` KhalibClassifier ` class
6+ - ` calibration_error ` function
7+ - ` build_reliability_diagram ` function
8+
9+ [ Unreleased ] : https://github.com/yourusername/yourproject/compare/0.1...HEAD
10+ [ 1.0.0 ] : https://github.com/yourusername/yourproject/releases/tag/0.1
Original file line number Diff line number Diff line change @@ -24,12 +24,18 @@ See the [documentation][khalib-docs] for more information.
2424
2525- Make sure you have installed [ Khiops 11 Beta] [ khiops11-setup ]
2626- Execute
27+
2728``` bash
28- pip install https://github.com/KhiopsLab/khalib/archive/refs/heads/main .zip
29+ pip install https://github.com/KhiopsLab/khalib/archive/refs/tags/0.1 .zip
2930```
31+
3032<!-- end-install -->
3133
3234
35+ ## Documentation
36+
37+ See https://khiopslab.github.io/khalib/
38+
3339
3440[ khiops-org ] : https://khiops.org
3541[ khiops11-setup ] : https://khiops.org/11.0.0-b.0/setup/
Original file line number Diff line number Diff line change 1717html_theme = "furo"
1818html_static_path = ["_static" ]
1919html_title = f"<h6><center>{ project } { release } </center></h6>"
20-
21- autosummary_generate = True
22- autosummary_ignore_module_all = False
23-
2420default_role = "obj"
2521
26- # Enable this to debug notebooks
27- # nb_execution_allow_errors=True
28- nb_execution_show_tb : True
29-
22+ # Extensions configs
3023
31- ## Numpydoc extension config
32- numpydoc_show_class_members = False
24+ ## autosummary
25+ autosummary_generate = True
26+ autosummary_ignore_module_all = False
3327
34- ## Autodoc extension config
28+ ## autodoc
3529autodoc_default_options = {
3630 "members" : True ,
3731 "inherited-members" : False ,
4034 "special-members" : False ,
4135}
4236
43- ## Intersphinx extension config
37+
38+ ## myst_nb
39+ nb_execution_allow_errors = False # Enable this to debug notebooks
40+ nb_execution_show_tb : True
41+
42+
43+ ## numpydoc
44+ numpydoc_show_class_members = False
45+
46+
47+ ## intersphinx
4448intersphinx_mapping = {
4549 "python" : ("https://docs.python.org/3" , None ),
4650 "pandas" : ("https://pandas.pydata.org/pandas-docs/dev" , None ),
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44
55[project ]
66name = " khalib"
7- version = " 0.1b0 "
7+ version = " 0.1 "
88description = " Classifier Calibration with Khiops"
99authors = [{
name =
" Felipe Olmos" ,
email =
" [email protected] " }]
1010requires-python = " >=3.11"
You can’t perform that action at this time.
0 commit comments