Files
FastDeploy/examples/vision/generation/anemigan/python
chenjian 87bcb5df21 [Model] add style transfer model (#922)
* add style transfer model

* add examples for generation model

* add unit test

* add speed comparison

* add speed comparison

* add variable for constant

* add preprocessor and postprocessor

* add preprocessor and postprocessor

* fix

* fix according to review

Co-authored-by: DefTruth <31974251+DefTruth@users.noreply.github.com>
2023-01-03 10:47:08 +08:00
..

AnimeGAN Python部署示例

在部署前,需确认以下两个步骤

本目录下提供infer.py快速完成AnimeGAN在CPU/GPU以及GPU上通过TensorRT加速部署的示例。执行如下脚本即可完成

# 下载部署示例代码
git clone https://github.com/PaddlePaddle/FastDeploy.git
cd FastDeploy/examples/vision/generation/anemigan/python
# 下载准备好的测试图片
wget https://bj.bcebos.com/paddlehub/fastdeploy/style_transfer_testimg.jpg

# CPU推理
python infer.py --model animegan_v1_hayao_60  --image style_transfer_testimg.jpg  --device cpu
# GPU推理
python infer.py --model animegan_v1_hayao_60 --image style_transfer_testimg.jpg  --device gpu

AnimeGAN Python接口

fd.vision.generation.AnimeGAN(model_file, params_file, runtime_option=None, model_format=ModelFormat.PADDLE)

AnimeGAN模型加载和初始化其中model_file和params_file为用于Paddle inference的模型结构文件和参数文件。

参数

  • model_file(str): 模型文件路径
  • params_file(str): 参数文件路径
  • runtime_option(RuntimeOption): 后端推理配置默认为None即采用默认配置
  • model_format(ModelFormat): 模型格式默认为Paddle格式

predict函数

AnimeGAN.predict(input_image)

模型预测入口,输入图像输出风格迁移后的结果。

参数

  • input_image(np.ndarray): 输入数据注意需为HWCBGR格式

返回 np.ndarray, 风格转换后的图像BGR格式

batch_predict函数

AnimeGAN.batch_predict函数(input_images)

模型预测入口,输入一组图像并输出风格迁移后的结果。

参数

  • input_images(list(np.ndarray)): 输入数据一组图像数据注意需为HWCBGR格式

返回 list(np.ndarray), 风格转换后的一组图像BGR格式

其它文档