XuanyiLi
XuanyiLi
Hi: there is no released code for stereonet. could you please tell me how do you do experiments on stereonet? Thanks!
could you tell me the pytorch version?
Hi I run into this error with your suggested environment: `pickle.UnpicklingError: invalid load key, '
您好,可否加个好友交流下相关技术
Could you please tell me how to generate the colored Predicted disparity, it looks good! Thanks!
效果
可以粘贴些生成效果吗测试集
hhh
`def conv_down(inp,oup): return nn.Sequential( nn.Conv2d(inp,oup,4,stride=2,padding=1), nn.LeakyReLU(negative_slope=0.2, inplace=True), nn.Conv2d(oup,oup,3,stride=1,padding=1), nn.LeakyReLU(negative_slope=0.2, inplace=True) ) def conv_up(inp,oup): return nn.Sequential( nn.ConvTranspose2d(inp,oup,2,stride=2,padding=0), nn.LeakyReLU(negative_slope=0.2, inplace=True) ) def conv_merge(inp,oup): return nn.Sequential( nn.Conv2d(inp, oup, 1, stride=1, padding=0), nn.LeakyReLU(negative_slope=0.2, inplace=True),...
how to use hf_ch_in?