1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
|
From: Stephen Sinclair <radarsat1@gmail.com>
Date: Tue, 7 Nov 2017 11:53:18 -0300
Subject: Change external img tag urls to local files.
---
docs/templates/getting-started/functional-api-guide.md | 2 +-
docs/templates/getting-started/sequential-model-guide.md | 2 +-
docs/templates/index.md | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
Index: keras/docs/templates/getting-started/functional-api-guide.md
===================================================================
--- keras.orig/docs/templates/getting-started/functional-api-guide.md
+++ keras/docs/templates/getting-started/functional-api-guide.md
@@ -75,7 +75,7 @@ The model will also be supervised via tw
Here's what our model looks like:
-<img src="https://s3.amazonaws.com/keras.io/img/multi-input-multi-output-graph.png" alt="multi-input-multi-output-graph" style="width: 400px;"/>
+<img src="multi-input-multi-output-graph.png" alt="multi-input-multi-output-graph" style="width: 400px;"/>
Let's implement it with the functional API.
Index: keras/docs/templates/getting-started/sequential-model-guide.md
===================================================================
--- keras.orig/docs/templates/getting-started/sequential-model-guide.md
+++ keras/docs/templates/getting-started/sequential-model-guide.md
@@ -316,7 +316,7 @@ The first two LSTMs return their full ou
the last step in its output sequence, thus dropping the temporal dimension
(i.e. converting the input sequence into a single vector).
-<img src="https://keras.io/img/regular_stacked_lstm.png" alt="stacked LSTM" style="width: 300px;"/>
+<img src="regular_stacked_lstm.png" alt="stacked LSTM" style="width: 300px;"/>
```python
from keras.models import Sequential
Index: keras/docs/templates/index.md
===================================================================
--- keras.orig/docs/templates/index.md
+++ keras/docs/templates/index.md
@@ -1,5 +1,5 @@
# Keras: The Python Deep Learning library
-<img src='https://s3.amazonaws.com/keras.io/img/keras-logo-2018-large-1200.png', style='max-width: 600px; width: 90%;'>
+<img src='keras-logo-2018-large-1200.png', style='max-width: 600px;'>
{{autogenerated}}
\ No newline at end of file
|