Skip to content

Commit aaa47f0

Browse files
committed
Minor doc fixes
1 parent df860fd commit aaa47f0

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ Keras uses the following dependencies:
108108
- HDF5 and h5py (optional, required if you use model saving/loading functions)
109109
- Optional but recommended if you use CNNs: cuDNN.
110110

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

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

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

124-
To install, `cd` to the Keras folder and run the install command:
124+
To install Keras, `cd` to the Keras folder and run the install command:
125125
```
126126
sudo python setup.py install
127127
```

docs/sources/layers/recurrent.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ keras.layers.recurrent.SimpleRNN(output_dim,
1111
stateful=False,
1212
input_dim=None, input_length=None)
1313
```
14-
Fully connected RNN where output is to fed back to input.
14+
Fully connected RNN where the output is to fed back to the input.
1515

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

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33

44

55
setup(name='Keras',
6-
version='0.2.0',
6+
version='0.3.0',
77
description='Theano-based Deep Learning library',
88
author='Francois Chollet',
99
author_email='francois.chollet@gmail.com',
1010
url='https://github.com/fchollet/keras',
11-
download_url='https://github.com/fchollet/keras/tarball/0.2.0',
11+
download_url='https://github.com/fchollet/keras/tarball/0.3.0',
1212
license='MIT',
1313
install_requires=['theano', 'pyyaml', 'six'],
1414
extras_require={

0 commit comments

Comments
 (0)