fast-causal-shap 0.1.1__tar.gz → 0.1.2__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.

Potentially problematic release.


This version of fast-causal-shap might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: fast-causal-shap
3
- Version: 0.1.1
3
+ Version: 0.1.2
4
4
  Summary: A Python package for efficient causal SHAP computations
5
5
  Author-email: woonyee28 <ngnwy289@gmail.com>
6
6
  License: MIT
@@ -40,7 +40,7 @@ pip install git+https://github.com/woonyee28/CausalSHAP.git
40
40
 
41
41
  ## Usage
42
42
  ```
43
- from fast_causal_inference import FastCausalInference
43
+ from fast_causal_shap.core import FastCausalSHAP
44
44
 
45
45
  # Predict probabilities and assign to training data
46
46
  predicted_probabilities = model.predict_proba(X_train)[:,1]
@@ -23,7 +23,7 @@ pip install git+https://github.com/woonyee28/CausalSHAP.git
23
23
 
24
24
  ## Usage
25
25
  ```
26
- from fast_causal_inference import FastCausalInference
26
+ from fast_causal_shap.core import FastCausalSHAP
27
27
 
28
28
  # Predict probabilities and assign to training data
29
29
  predicted_probabilities = model.predict_proba(X_train)[:,1]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: fast-causal-shap
3
- Version: 0.1.1
3
+ Version: 0.1.2
4
4
  Summary: A Python package for efficient causal SHAP computations
5
5
  Author-email: woonyee28 <ngnwy289@gmail.com>
6
6
  License: MIT
@@ -40,7 +40,7 @@ pip install git+https://github.com/woonyee28/CausalSHAP.git
40
40
 
41
41
  ## Usage
42
42
  ```
43
- from fast_causal_inference import FastCausalInference
43
+ from fast_causal_shap.core import FastCausalSHAP
44
44
 
45
45
  # Predict probabilities and assign to training data
46
46
  predicted_probabilities = model.predict_proba(X_train)[:,1]
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "fast-causal-shap"
7
- version = "0.1.1"
7
+ version = "0.1.2"
8
8
  description = "A Python package for efficient causal SHAP computations"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.7"