网络模型传入Input核验
Posted 车辆狗的CV之旅
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了网络模型传入Input核验相关的知识,希望对你有一定的参考价值。
import torch
import torch.nn as nn
input = torch.randn(1,3)
print(input)
class Bottleneck(nn.Module):
def __init__(self, inplanes, planes):
super(Bottleneck, self).__init__()
self.inplanes = inplanes
self.planes = planes
self.connected_layer = nn.Linear(inplanes , planes )
def forward(self, x) :
x = self.connected_layer(x)
return x
model = Bottleneck(3, 1)
print(model)
out = model(input)
print(out.size())
手生了。。。。
以上是关于网络模型传入Input核验的主要内容,如果未能解决你的问题,请参考以下文章