Skip to content

Commit

Permalink
Minor doc fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
fchollet committed Dec 1, 2015
1 parent df860fd commit aaa47f0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ Keras uses the following dependencies:
- HDF5 and h5py (optional, required if you use model saving/loading functions)
- Optional but recommended if you use CNNs: cuDNN.

When using the Theano backend:
*When using the Theano backend:*
- Theano
- [See installation instructions](http://deeplearning.net/software/theano/install.html#install).

Expand All @@ -117,11 +117,11 @@ When using the Theano backend:
sudo pip install git+git://github.com/Theano/Theano.git
```

When using the TensorFlow backend:
*When using the TensorFlow backend:*
- TensorFlow
- [See installation instructions](https://github.com/tensorflow/tensorflow#download-and-setup).

To install, `cd` to the Keras folder and run the install command:
To install Keras, `cd` to the Keras folder and run the install command:
```
sudo python setup.py install
```
Expand Down
2 changes: 1 addition & 1 deletion docs/sources/layers/recurrent.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ keras.layers.recurrent.SimpleRNN(output_dim,
stateful=False,
input_dim=None, input_length=None)
```
Fully connected RNN where output is to fed back to input.
Fully connected RNN where the output is to fed back to the input.

- __Input shape__: 3D tensor with shape: `(nb_samples, timesteps, input_dim)`.

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@


setup(name='Keras',
version='0.2.0',
version='0.3.0',
description='Theano-based Deep Learning library',
author='Francois Chollet',
author_email='[email protected]',
url='https://github.com/fchollet/keras',
download_url='https://github.com/fchollet/keras/tarball/0.2.0',
download_url='https://github.com/fchollet/keras/tarball/0.3.0',
license='MIT',
install_requires=['theano', 'pyyaml', 'six'],
extras_require={
Expand Down

0 comments on commit aaa47f0

Please sign in to comment.