You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,7 @@ This is a Tensorflow implementation of the Residual Encoder Network based on [Au
15
15
*`read_input.py`: all functions related to input
16
16
*`residual_encoder.py`: the residual encoder model
17
17
*`common.py`: the common part for training and testing, which is mainly the workflow for this model
18
-
*`train.py`: train the residual encoder model using Tensorflow built-in GradientDescentOptimizer
18
+
*`train.py`: train the residual encoder model using Tensorflow built-in AdamOptimizer
19
19
*`test.py`: test your own images and save the output images
20
20
21
21
## Tensorflow graph
@@ -26,11 +26,11 @@ This is a Tensorflow implementation of the Residual Encoder Network based on [Au
26
26
27
27
* First please download pre-trained VGG16 model [vgg16.npy](https://mega.nz/#!YU1FWJrA!O1ywiCS2IiOlUCtCpI6HTJOMrneN-Qdv3ywQP5poecM) to vgg folder
28
28
29
-
* Use pre-trained residual encoder model
29
+
*Option 1: Use pre-trained residual encoder model
30
30
* Model can be downloaded [here](https://github.com/Armour/Automatic-Image-Colorization/releases/tag/2.0)
31
31
* Unzip all files to `summary_path` (you can change this path in `config.py`)
32
32
33
-
* Train your own model
33
+
*Option 2: Train your own model!
34
34
1. Change the `batch_size` and `training_iters` if you want.
35
35
2. Change `training_dir` to your directory that contains all your training jpg images
36
36
3. Run `python train.py`
@@ -54,7 +54,7 @@ This is a Tensorflow implementation of the Residual Encoder Network based on [Au
54
54
*
55
55
*
56
56
57
-
More examples can be found at[sample_output_images](https://github.com/Armour/Automatic-Image-Colorization/blob/master/sample_output_images) folder.
57
+
*More example output images can be found in[sample_output_images](https://github.com/Armour/Automatic-Image-Colorization/blob/master/sample_output_images) folder.
0 commit comments