interpret 0.4.4__tar.gz → 0.5.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,21 +1,22 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: interpret
3
- Version: 0.4.4
3
+ Version: 0.5.1
4
4
  Summary: Fit interpretable models. Explain blackbox machine learning.
5
5
  Home-page: https://github.com/interpretml/interpret
6
6
  Author: The InterpretML Contributors
7
7
  Author-email: interpret@microsoft.com
8
8
  Classifier: Programming Language :: Python
9
9
  Classifier: Programming Language :: Python :: 3
10
- Classifier: Programming Language :: Python :: 3.6
11
- Classifier: Programming Language :: Python :: 3.7
12
10
  Classifier: Programming Language :: Python :: 3.8
13
11
  Classifier: Programming Language :: Python :: 3.9
14
12
  Classifier: Programming Language :: Python :: 3.10
13
+ Classifier: Programming Language :: Python :: 3.11
14
+ Classifier: Programming Language :: Python :: 3.12
15
15
  Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
16
16
  Classifier: Development Status :: 3 - Alpha
17
17
  Classifier: License :: OSI Approved :: MIT License
18
18
  Classifier: Operating System :: OS Independent
19
+ Requires-Dist: interpret-core[dash,debug,linear,notebook,plotly,sensitivity,shap]==0.5.1
19
20
 
20
21
 
21
22
  In the beginning machines learned in darkness, and data scientists struggled in the void to explain them.
@@ -1,21 +1,22 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: interpret
3
- Version: 0.4.4
3
+ Version: 0.5.1
4
4
  Summary: Fit interpretable models. Explain blackbox machine learning.
5
5
  Home-page: https://github.com/interpretml/interpret
6
6
  Author: The InterpretML Contributors
7
7
  Author-email: interpret@microsoft.com
8
8
  Classifier: Programming Language :: Python
9
9
  Classifier: Programming Language :: Python :: 3
10
- Classifier: Programming Language :: Python :: 3.6
11
- Classifier: Programming Language :: Python :: 3.7
12
10
  Classifier: Programming Language :: Python :: 3.8
13
11
  Classifier: Programming Language :: Python :: 3.9
14
12
  Classifier: Programming Language :: Python :: 3.10
13
+ Classifier: Programming Language :: Python :: 3.11
14
+ Classifier: Programming Language :: Python :: 3.12
15
15
  Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
16
16
  Classifier: Development Status :: 3 - Alpha
17
17
  Classifier: License :: OSI Approved :: MIT License
18
18
  Classifier: Operating System :: OS Independent
19
+ Requires-Dist: interpret-core[dash,debug,linear,notebook,plotly,sensitivity,shap]==0.5.1
19
20
 
20
21
 
21
22
  In the beginning machines learned in darkness, and data scientists struggled in the void to explain them.
@@ -0,0 +1 @@
1
+ interpret-core[dash,debug,linear,notebook,plotly,sensitivity,shap]==0.5.1
@@ -5,7 +5,7 @@ from setuptools import setup, find_packages
5
5
 
6
6
  name = "interpret"
7
7
  # NOTE: Version is replaced by a regex script.
8
- version = "0.4.4"
8
+ version = "0.5.1"
9
9
  long_description = """
10
10
  In the beginning machines learned in darkness, and data scientists struggled in the void to explain them.
11
11
 
@@ -14,19 +14,16 @@ Let there be light.
14
14
  https://github.com/interpretml/interpret
15
15
  """
16
16
  interpret_core_extra = [
17
- "required",
18
17
  "debug",
19
18
  "notebook",
20
19
  "plotly",
21
- "lime",
20
+ # "lime", # no longer maintained
22
21
  "sensitivity",
23
22
  "shap",
24
- "ebm",
25
- "skoperules",
23
+ # "skoperules", # no longer maintained
26
24
  "linear",
27
- "decisiontree",
28
25
  "dash",
29
- "treeinterpreter",
26
+ # "treeinterpreter", # no longer maintained
30
27
  ]
31
28
 
32
29
  setup(
@@ -41,11 +38,11 @@ setup(
41
38
  classifiers=[
42
39
  "Programming Language :: Python",
43
40
  "Programming Language :: Python :: 3",
44
- "Programming Language :: Python :: 3.6",
45
- "Programming Language :: Python :: 3.7",
46
41
  "Programming Language :: Python :: 3.8",
47
42
  "Programming Language :: Python :: 3.9",
48
43
  "Programming Language :: Python :: 3.10",
44
+ "Programming Language :: Python :: 3.11",
45
+ "Programming Language :: Python :: 3.12",
49
46
  "Topic :: Scientific/Engineering :: Artificial Intelligence",
50
47
  "Development Status :: 3 - Alpha",
51
48
  "License :: OSI Approved :: MIT License",
@@ -1 +0,0 @@
1
- interpret-core[dash,debug,decisiontree,ebm,lime,linear,notebook,plotly,required,sensitivity,shap,skoperules,treeinterpreter]==0.4.4
File without changes