代码设计思路每周六公布!!!
对我的偶像胡歌,下手……
#Keras:基于Keras的VGG16实现A Neural Algorithm of Artistic Style from keras.preprocessing.image import load_img, img_to_array import numpy as np from scipy.misc import imsave from scipy.optimize import fmin_l_bfgs_b import time from keras.applications.vgg16 import VGG16 from keras.applications.vgg16 import preprocess_input from keras import backend as K import os # References - [A Neural Algorithm of Artistic Style](http://arxiv.org/abs/1508.06576) ''' base_image_path=r'F:\File_Python\Python_example\fast_style_transfer_master\examples\content\20180214(21).jpg' style_reference_image_path=r'F:\File_Python\Python_example\fast_style_transfer_master\examples\style\mieba02.jpg' result_prefix=r'F:\File_Python\Python_example\fast_style_transfer_master\examples\results' iterations=10 content_weight=0.025 style_weight=1.0 total_variation_weight=1.0