merve HF staff commited on
Commit
6cd2e73
1 Parent(s): 8f1e901

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -1
README.md CHANGED
@@ -13,6 +13,8 @@ This repo contains the model and the notebook [for this Deep Dream implementatio
13
 
14
  Full credits to: [François Chollet](https://twitter.com/fchollet)
15
 
 
 
16
  ## Background Information
17
 
18
  "Deep dream" is an image-filtering technique which consists of taking an image classification model, and running gradient ascent over an input image to try to maximize the activations of specific layers (and sometimes, specific units in specific layers) for this input. It produces hallucination-like visuals.
@@ -26,5 +28,4 @@ Process:
26
  - Resize the original image to the smallest scale.
27
  - For every scale, starting with the smallest (i.e. current one): - Run gradient ascent - Upscale image to the next scale - Reinject the detail that was lost at upscaling time
28
  - Stop when we are back to the original size. To obtain the detail lost during upscaling, we simply take the original image, shrink it down, upscale it, and compare the result to the (resized) original image.
29
- ![deepdream](https://keras.io/img/examples/generative/deep_dream/deep_dream_17_0.png)
30
 
 
13
 
14
  Full credits to: [François Chollet](https://twitter.com/fchollet)
15
 
16
+ ![deepdream](https://keras.io/img/examples/generative/deep_dream/deep_dream_17_0.png)
17
+
18
  ## Background Information
19
 
20
  "Deep dream" is an image-filtering technique which consists of taking an image classification model, and running gradient ascent over an input image to try to maximize the activations of specific layers (and sometimes, specific units in specific layers) for this input. It produces hallucination-like visuals.
 
28
  - Resize the original image to the smallest scale.
29
  - For every scale, starting with the smallest (i.e. current one): - Run gradient ascent - Upscale image to the next scale - Reinject the detail that was lost at upscaling time
30
  - Stop when we are back to the original size. To obtain the detail lost during upscaling, we simply take the original image, shrink it down, upscale it, and compare the result to the (resized) original image.
 
31