Skip to content

Commit

Permalink
Update dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
fchollet committed Apr 27, 2015
1 parent 69b69e4 commit d8ddaff
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ Keras uses the following dependencies:
- Theano
- See installation instructions: http://deeplearning.net/software/theano/install.html#install

- PIL (optional, required if you use preprocessing.image)
- h5py (optional, required if you use model saving/loading functions)

- Optional but recommended if you use CNNs: cuDNN.

Expand Down
2 changes: 1 addition & 1 deletion docs/sources/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ Keras uses the following dependencies:
- numpy, scipy
- Theano
- See [installation instructions](http://deeplearning.net/software/theano/install.html#install).
- PIL (optional, required if you use preprocessing.image)
- h5py (optional, required if you use model saving/loading functions)
- Optional but recommended if you use CNNs: cuDNN.

Once you have the dependencies installed, clone the repo:
Expand Down
2 changes: 1 addition & 1 deletion docs/sources/models.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ model = keras.models.Sequential()
- __train__(X, y, accuracy=False): Single gradient update on one batch. if accuracy==False, return tuple (loss_on_batch, accuracy_on_batch). Else, return loss_on_batch.
- __test__(X, y, accuracy=False): Single performance evaluation on one batch. if accuracy==False, return tuple (loss_on_batch, accuracy_on_batch). Else, return loss_on_batch.
- __save_weights__(fname): Store the weights of all layers to a HDF5 file.
- __load_weights__(fname): Sets the weights of a model, based to weights stored by __save__weights__. You can only __load__weights__ on a savefile from a model with an identical architecture. __save__weights__ can be called either before or after the __compile__ step.
- __load_weights__(fname): Sets the weights of a model, based to weights stored by __save__weights__. You can only __load__weights__ on a savefile from a model with an identical architecture. __load_weights__ can be called either before or after the __compile__ step.

__Examples__:

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@
author_email='[email protected]',
url='https://github.com/fchollet/keras',
license='MIT',
install_requires=['theano', 'h5py'],
packages=find_packages(),
# TODO: dependencies
)

0 comments on commit d8ddaff

Please sign in to comment.