网络模型传入Input核验

Posted 车辆狗的CV之旅

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了网络模型传入Input核验相关的知识,希望对你有一定的参考价值。



import torchimport 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(31)print(model)
out = model(input)print(out.size())


手生了。。。。

以上是关于网络模型传入Input核验的主要内容,如果未能解决你的问题,请参考以下文章

除征信快查外,用户画像和风控模型如何助力网络小贷风控

银行卡验证接口API(仅需一行代码,实现全国银行卡核验)

发票核验的正确打开方式

Thymeleaf引用片段传入参数

网络I/O模型

利用Tensorflow实现卷积神经网络模型