Skip to content

Commit

Permalink
Merge pull request #298 from jamesmyatt/binder
Browse files Browse the repository at this point in the history
Add environment for binder
  • Loading branch information
marcotcr committed Mar 12, 2019
2 parents 499d241 + 7b5b5c7 commit ec5df45
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# lime

[![Build Status](https://travis-ci.org/marcotcr/lime.svg?branch=master)](https://travis-ci.org/marcotcr/lime)
[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/marcotcr/lime/master)

This project is about explaining what machine learning classifiers (or models) are doing.
At the moment, we support explaining individual predictions for text classifiers or classifiers that act on tables (numpy arrays of numerical or categorical data) or images, with a package called lime (short for local interpretable model-agnostic explanations).
Expand Down
25 changes: 25 additions & 0 deletions binder/environment.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@

name: lime-dev
channels:
- conda-forge
dependencies:
- python=3.6.*
# lime install dependencies
- matplotlib=2.*
- numpy
- scipy
- scikit-learn
- scikit-image
# for testing
- flake8
- pytest
# for examples
- jupyter
- pandas
- keras
- tensorflow
- h2oai::h2o
- py-xgboost
- pip:
# lime source code
- -e ..

0 comments on commit ec5df45

Please sign in to comment.