Skip to content

Commit 928c8e9

Browse files
authored
updated for version update (#128)
1 parent 509802d commit 928c8e9

File tree

5 files changed

+17
-5
lines changed

5 files changed

+17
-5
lines changed

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
author = 'Ramaravind, Amit, Chenhao'
2323

2424
# The full version, including alpha/beta/rc tags
25-
release = '0.5'
25+
release = '0.6'
2626

2727

2828
# -- General configuration ---------------------------------------------------

docs/source/dice_ml.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,14 @@ Subpackages
1515
Submodules
1616
----------
1717

18+
dice\_ml.constants module
19+
-------------------------
20+
21+
.. automodule:: dice_ml.constants
22+
:members:
23+
:undoc-members:
24+
:show-inheritance:
25+
1826
dice\_ml.counterfactual\_explanations module
1927
--------------------------------------------
2028

docs/source/notebooks/DiCE_with_private_data.ipynb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
"cell_type": "markdown",
55
"metadata": {},
66
"source": [
7+
"# Generating Counterfactual Explanations without access to training data\n",
78
"If only the trained model is available but not the training data, DiCE can still be used to generate counterfactual explanations. Below we show an example where DiCE uses only basic metadata about each feature used in the ML model. "
89
]
910
},
@@ -376,7 +377,7 @@
376377
"toc": {
377378
"base_numbering": 1,
378379
"nav_menu": {},
379-
"number_sections": true,
380+
"number_sections": false,
380381
"sideBar": true,
381382
"skip_h1_title": false,
382383
"title_cell": "Table of Contents",

docs/source/notebooks/nb_index.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ Example notebooks
77
:caption: Notebooks:
88

99
DiCE_getting_started
10+
DiCE_feature_importances.ipynb
11+
DiCE_multiclass_classification_and_regression.ipynb
12+
DiCE_model_agnostic_CFs.ipynb
1013
DiCE_with_private_data
1114
DiCE_with_advanced_options
1215
DiCE_getting_started_feasible

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,16 @@
1717

1818
setuptools.setup(
1919
name="dice_ml",
20-
version="0.5",
20+
version="0.6",
2121
license="MIT",
2222
author="Ramaravind Mothilal, Amit Sharma, Chenhao Tan",
2323
author_email="[email protected]",
2424
description="Generate Diverse Counterfactual Explanations for any machine learning model.",
2525
long_description=long_description,
2626
long_description_content_type="text/x-rst",
2727
url="https://github.com/interpretml/DiCE",
28-
download_url="https://github.com/interpretml/DiCE/archive/v0.5.tar.gz",
29-
python_requires='>=3.4',
28+
download_url="https://github.com/interpretml/DiCE/archive/v0.6.tar.gz",
29+
python_requires='>=3.5',
3030
packages=setuptools.find_packages(),
3131
classifiers=[
3232
"Programming Language :: Python :: 3",

0 commit comments

Comments
 (0)