Skip to content

Commit c7dd7ae

Browse files
authored
Merge pull request #13 from EthicalML/updated_deps
Updatede dependencies to align with broader compatibility
2 parents d6be7f9 + 512161b commit c7dd7ae

35 files changed

+1167
-241
lines changed

README.md

+2-4
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,7 @@ You can find the documentation at [https://ethicalml.github.io/xai/index.html](h
3131

3232
</table>
3333

34-
# 0.0.5 - ALPHA Version
35-
36-
This library is currently in early stage developments and hence it will be quite unstable due to the fast updates. It is important to bare this in mind if using it in production.
34+
# 0.1.0
3735

3836
If you want to see a fully functional demo in action clone this repo and run the <a href="https://github.com/EthicalML/xai/blob/master/examples/XAI%20Example%20Usage.ipynb">Example Jupyter Notebook in the Examples folder</a>.
3937

@@ -84,7 +82,7 @@ ims = xai.imbalance_plot(df, "gender")
8482

8583
#### View imbalances for all categories across multiple columns
8684
``` python
87-
im = xai.show_imbalance(df, "gender", "loan")
85+
im = xai.imbalance_plot(df, "gender", "loan")
8886
```
8987
<img width="100%" src="images/readme-imbalance-multiple.jpg">
9088

env.yml

+6-5
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,17 @@ channels:
33
- defaults
44
- conda-forge
55
dependencies:
6-
- python==3.7.3
6+
- python
77
- jupyter
8-
- numpy==1.15.4
9-
- pandas==0.23.4
10-
- matplotlib==3.0.2
11-
- scikit-learn==0.20.1
8+
- numpy
9+
- pandas
10+
- matplotlib
11+
- scikit-learn
1212
- seaborn
1313
- spacy
1414
- nb_conda
1515
- keras
16+
- tensorflow
1617
- pip:
1718
- black
1819
- jupyterthemes # jt -t monokai -T -nfs 115 -cellw 98% -N -kl -ofs 11 -altmd

0 commit comments

Comments
 (0)