nagadomi 10 роки тому
батько
коміт
6a7ecfc45c
2 змінених файлів з 4 додано та 4 видалено
  1. 2 2
      README.md
  2. 2 2
      train.sh

+ 2 - 2
README.md

@@ -162,7 +162,7 @@ th convert_data.lua
 ### Training a Noise Reduction(level1) model
 
 ```
-th train.lua -method noise -noise_level 1 -test images/miku_noise.png
+th train.lua -method noise -noise_level 1 -test images/miku_noisy.png
 th cleanup_model.lua -model models/noise1_model.t7 -oformat ascii
 ```
 You can check the performance of model with `models/noise1_best.png`.
@@ -170,7 +170,7 @@ You can check the performance of model with `models/noise1_best.png`.
 ### Training a Noise Reduction(level2) model
 
 ```
-th train.lua -method noise -noise_level 2 -test images/miku_noise.png
+th train.lua -method noise -noise_level 2 -test images/miku_noisy.png
 th cleanup_model.lua -model models/noise2_model.t7 -oformat ascii
 ```
 You can check the performance of model with `models/noise2_best.png`.

+ 2 - 2
train.sh

@@ -1,9 +1,9 @@
 #!/bin/sh
 
-th train.lua -method noise -noise_level 1 -test images/miku_noise.png
+th train.lua -method noise -noise_level 1 -test images/miku_noisy.png
 th cleanup_model.lua -model models/noise1_model.t7 -oformat ascii
 
-th train.lua -method noise -noise_level 2 -test images/miku_noise.png
+th train.lua -method noise -noise_level 2 -test images/miku_noisy.png
 th cleanup_model.lua -model models/noise2_model.t7 -oformat ascii
 
 th train.lua -method scale -scale 2 -test images/miku_small.png