File tree 3 files changed +6
-6
lines changed
3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -108,7 +108,7 @@ Keras uses the following dependencies:
108
108
- HDF5 and h5py (optional, required if you use model saving/loading functions)
109
109
- Optional but recommended if you use CNNs: cuDNN.
110
110
111
- When using the Theano backend:
111
+ * When using the Theano backend:*
112
112
- Theano
113
113
- [ See installation instructions] ( http://deeplearning.net/software/theano/install.html#install ) .
114
114
@@ -117,11 +117,11 @@ When using the Theano backend:
117
117
sudo pip install git+git://github.com/Theano/Theano.git
118
118
```
119
119
120
- When using the TensorFlow backend:
120
+ * When using the TensorFlow backend:*
121
121
- TensorFlow
122
122
- [ See installation instructions] ( https://github.com/tensorflow/tensorflow#download-and-setup ) .
123
123
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:
125
125
```
126
126
sudo python setup.py install
127
127
```
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ keras.layers.recurrent.SimpleRNN(output_dim,
11
11
stateful = False ,
12
12
input_dim = None , input_length = None )
13
13
```
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.
15
15
16
16
- __ Input shape__ : 3D tensor with shape: ` (nb_samples, timesteps, input_dim) ` .
17
17
Original file line number Diff line number Diff line change 3
3
4
4
5
5
setup (name = 'Keras' ,
6
- version = '0.2 .0' ,
6
+ version = '0.3 .0' ,
7
7
description = 'Theano-based Deep Learning library' ,
8
8
author = 'Francois Chollet' ,
9
9
author_email = 'francois.chollet@gmail.com' ,
10
10
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' ,
12
12
license = 'MIT' ,
13
13
install_requires = ['theano' , 'pyyaml' , 'six' ],
14
14
extras_require = {
You can’t perform that action at this time.
0 commit comments