Skip to content

Commit

Permalink
pip install instead of setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
csinva committed Jul 18, 2019
1 parent 82b2031 commit d4b0d49
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
7 changes: 7 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,13 @@ The demos are contained in 3 main [notebooks](notebooks), summarized in [cheat_s
2. [posthoc.ipynb](notebooks/posthoc.ipynb) - different simple analyses to interpret a trained model
3. [uncertainty.ipynb](notebooks/uncertainty.ipynb) - code to get uncertainty estimates for a model

### Installation / quickstart
To install, `pip install git+https://github.com/csinva/interpretability-implementations-demos`

```
```


### References / further reading

Expand Down
5 changes: 1 addition & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,12 @@
url="https://github.com/csinva/interpretability-implementations-demos",
packages=setuptools.find_packages(),
install_requires=[
'fim',
'numpy',
'scipy',
'matplotlib',
'pandas',
'scikit-learn',
],
dependency_links=[
'https://github.com/csinva/pyfim-clone/tarball/master#egg=fim-6.28'
'fim @ git+https://github.com/csinva/pyfim-clone',
],
classifiers=[
"Programming Language :: Python :: 3",
Expand Down

0 comments on commit d4b0d49

Please sign in to comment.