Minor doc fixes

This commit is contained in:
Francois Chollet 2015-12-01 10:03:37 -08:00
parent df860fdb94
commit aaa47f0d20
3 changed files with 6 additions and 6 deletions

@ -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).
@ -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
```

@ -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)`.

@ -3,12 +3,12 @@ from setuptools import find_packages
setup(name='Keras',
version='0.2.0',
version='0.3.0',
description='Theano-based Deep Learning library',
author='Francois Chollet',
author_email='francois.chollet@gmail.com',
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={