代码拉取完成,页面将自动刷新
require 'nn'
require 'image'
require 'InstanceNormalization'
require 'src/utils'
require 'riseml'
local cmd = torch.CmdLine()
cmd:option('-image_size', 0, 'Resize input image to. Do not resize if 0.')
cmd:option('-model', '', 'Path to trained model.')
cmd:option('-cpu', false, 'use this flag to run on CPU')
local params = cmd:parse(arg)
-- Load model and set type
local model = torch.load(params.model)
if params.cpu then
tp = 'torch.FloatTensor'
else
require 'cutorch'
require 'cunn'
require 'cudnn'
tp = 'torch.CudaTensor'
model = cudnn.convert(model, cudnn)
end
model:type(tp)
model:evaluate()
local function run_image(img_data)
-- Load image and scale
local byte_tensor = torch.ByteTensor(torch.ByteStorage():string(img_data))
local img = image.decompressJPG(byte_tensor, 3):float()
if params.image_size > 0 then
img = image.scale(img, params.image_size, params.image_size)
end
-- Stylize
local input = img:add_dummy()
local stylized = model:forward(input:type(tp)):double()
stylized = deprocess(stylized[1])
-- Return
return image.compressJPG(torch.clamp(stylized,0,1)):storage():string()
end
riseml.serve(run_image)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。