crowsonkb / style_transfer

Data-parallel image stylization using Caffe.
MIT License
113 stars 14 forks source link

What are the Style_Transfer equivalents of Neural-Style's -style_weight, -normalize_gradients, and -int image? #8

Closed ProGamerGov closed 7 years ago

ProGamerGov commented 7 years ago

What are the Style_Transfer equivalents of Neural-Style's -style_weight, -normalize_gradients, and -int image? I have been trying to convert settings that work well in Neural-Style, into the equivalent settings used by Style_Transfer, but I can't seem to find/figure out these last 3 commands.

crowsonkb commented 7 years ago

-style_weight: style_transfer always sets it to 1, and you have to scale the other weights accordingly.

-normalize_gradients: always enabled.

-init image: --init-image same_as_content_image.jpg

ProGamerGov commented 7 years ago

Thanks for the help!