Skip to content

Commit

Permalink
Added data
Browse files Browse the repository at this point in the history
  • Loading branch information
axsaucedo committed Jan 13, 2019
1 parent a3b1e4c commit c6b7ea9
Show file tree
Hide file tree
Showing 5 changed files with 51 additions and 291 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@ include README.md
include requirements.txt
recursive-include xai *.pickle
recursive-exclude * __pycache__
recursive-include xai *.csv
recursive-exclude * *.py[co]
recursive-include docs *.md *.jpg *.png *.gif
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
![GitHub](https://img.shields.io/badge/Release-ALPHA-yellow.svg)
![GitHub](https://img.shields.io/badge/Version-0.0.3_ALPHA-lightgrey.svg)
![GitHub](https://img.shields.io/badge/Version-0.0.4_ALPHA-lightgrey.svg)
![GitHub](https://img.shields.io/badge/Python-3.5_|_3.6-blue.svg)
![GitHub](https://img.shields.io/badge/License-MIT-lightgrey.svg)
[![Maintenance](https://img.shields.io/badge/Maintained%3F-yes-green.svg)](https://GitHub.com/Naereen/StrapDown.js/graphs/commit-activity)
Expand All @@ -10,7 +10,7 @@ XAI is a Machine Learning library that is designed with AI explainability in its

You can find the documentation at [https://ethicalml.github.io/xai/index.html](https://ethicalml.github.io/xai/index.html). You can also check out our [talk at Tensorflow London](https://www.youtube.com/watch?v=GZpfBhQJ0H4) where the idea was first conceived - the talk also contains an insight on the definitions and principles in this library.

# 0.0.3 - ALPHA Version
# 0.0.4 - ALPHA Version

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.

Expand Down Expand Up @@ -47,7 +47,8 @@ You can find example usage in the examples folder.
With XAI you can identify imbalances in the data. For this, we will load the census dataset from the XAI library.

``` python
df = xai.data.census
import xai.data
df = xai.data.load_census()
df.head()
```
<img width="100%" src="images/readme-1.png">
Expand Down
Binary file modified dist/xai-0.0.3-py3.6.egg
Binary file not shown.
332 changes: 45 additions & 287 deletions examples/XAI Example Usage.ipynb

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def run(self):

setup(
name="xai",
version="0.0.3",
version="0.0.4",
description="XAI - An industry-ready machine learning library that ensures explainable AI by design",
long_description=readme,
author="Alejandro Saucedo",
Expand Down

0 comments on commit c6b7ea9

Please sign in to comment.