瀏覽代碼

add readme

Yijunmaverick 7 年之前
父節點
當前提交
51980909cc
共有 1 個文件被更改,包括 8 次插入2 次删除
  1. 8 2
      README.md

+ 8 - 2
README.md

@@ -1,5 +1,5 @@
 # CartoonGAN-Test-Pytorch-Torch
-Pytorch and Torch testing code of [CartoonGAN]()http://openaccess.thecvf.com/content_cvpr_2018/CameraReady/2205.pdf [Chen et al., CVPR18]. With the released pretrained models by authors, I made these simple scripts for a quick test. The training code should be similar to the popular GAN-based image-translation frameworks and is not included here.
+Pytorch and Torch testing code of [CartoonGAN](http://openaccess.thecvf.com/content_cvpr_2018/CameraReady/2205.pdf) `[Chen et al., CVPR18]`. With the released pretrained models by authors, I made these simple scripts for a quick test.
 
 
 ## Getting started
@@ -27,7 +27,7 @@ python test.py --input_dir YourImgDir --style Hosoda --gpu 0
 
 ## Torch
 
-Working with original models with Torch is also fine. I just convert the weights (bias) in their models from CudaTensor to FloatTensor so that `cudnn' is not required for loading models.
+Working with the original models with Torch is also fine. I just convert the weights (bias) in their models from CudaTensor to FloatTensor so that `cudnn` is not required for loading models.
 
 - Download the models:
 
@@ -69,6 +69,12 @@ th test.lua -input_dir YourImgDir -style Hosoda -gpu 0
 </p>
 
 
+## Note
+
+- The training code should be similar to the popular GAN-based image-translation frameworks and thus is not included here.
+
+- With a single GPU (~12GB memory), the largest image size for testing is ~500 now.
+
 ## Acknowledgement
 
 - Many thanks to the authors for this cool work.