小知识点 | 上采样【tensorflow and pytorch】

实现上采样的方法一:插值
e.g. retinanet

tensorflow 插值

 import tensorflow as tf
 tf.image.resize_images(input,[new_height,new_width]) #tensorflow

[pytorch 插值]

import torch.nn as nn
import torch.nn.functional as F
F.interpolate(x, size=[128, 128], mode="bilinear") #pytorch

图像插值详解链接如下:
https://mp.weixin.qq.com/s/-27W29L05CuSERZ-dS2_-Q
实现上采样的方法二:反卷积
又称转置卷积,反池化

你可能感兴趣的:(小知识点,深度学习)