Yifan Zhou 31446de905
[Doc]: MMEdit doc (#153)
* Add doc

* Remove spaces

* sovle comments

* Resolve comments
2021-10-28 14:33:40 +08:00

31 lines
1.3 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# MMEditing 支持
[MMEditing](https://github.com/open-mmlab/mmediting) 是一个基于 PyTorch 的开源图像视频编辑工具箱。它是 [OpenMMLab](https://openmmlab.com/) 项目的一部分。
## MMEditing 安装教程
请参考[官方安装指导](https://mmediting.readthedocs.io/en/latest/install.html#installation)进代码库的安装。
## MMDeploy 支持的 MMEditing 模型列表
| 模型 | 模型配置文件(示例) | ONNX Runtime | TensorRT | NCNN | PPL |
| :----: | :----------------------------------------------------------: | :----------: | :------: | :---: | :---: |
| SRCNN | configs/restorers/srcnn/srcnn_x4k915_g1_1000k_div2k.py | Y | Y | N | Y |
| ESRGAN | configs/restorers/esrgan/esrgan_x4c64b23g32_g1_400k_div2k.py | Y | Y | N | Y |
## MMEditing 的部署任务类型
| codebase | task |
| :------: | :--------------: |
| mmedit | super-resolution |
## 注意事项
## 常见问题解答
1. 为什么 SRCNN 模型在 TensorRT 上运行的精度低于在 PyTorch 上运行的精度?
SRCNN 使用双三次插值bicubic来进行图像上采样。 TensorRT 不支持双三次差值操作。我们用双线性插值bilinear替换了该操作这种替换会降低精度。