From a6519f5455900415c2ff7dd5d36bcf54bdae2daa Mon Sep 17 00:00:00 2001 From: Connor Olding Date: Fri, 9 Mar 2018 10:17:31 +0100 Subject: [PATCH] improve notes on dependencies --- README.md | 6 +++++- onn/__init__.py | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c12b612..26b730a 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,11 @@ maybe consider one of the following: python 3.5+ -numpy scipy h5py sklearn dotmap +mandatory packages: numpy scipy + +needed for saving weights: h5py + +used in example code: dotmap ## minimal example diff --git a/onn/__init__.py b/onn/__init__.py index d48d3e1..e3f95de 100644 --- a/onn/__init__.py +++ b/onn/__init__.py @@ -1,5 +1,5 @@ # external packages required for full functionality: -# numpy scipy h5py sklearn +# numpy scipy h5py # BIG TODO: ensure numpy isn't upcasting to float64 *anywhere*. # this is gonna take some work.