saladjay

Results 5 issues of saladjay

using ResNeSt-50 as an example ` from resnest.torch import resnest50 net = resnest50(pretrained=True) import torch a = torch.ones(1,3,512,512) net.cuda() net.train() net(a.cuda()) ` ValueError: Expected more than 1 value per channel...

你好,请问能否提供一下project在哪个环境下运行。包括操作系统,trt版本,onnx版本,pytorch版本。能不能用visual studio运行。万分感谢。

```c++ #include #include #include #include #include #include "libipc/ipc.h" using msg_line = ipc::chan; class shared_memory_register{ public: shared_memory_register(){ }; ~shared_memory_register(){ for(auto iter=shared_memory_dict.begin(); iter!=shared_memory_dict.end(); iter++){ iter->second->send(ipc::buff_t('\0')); iter->second->disconnect(); } }; bool add_shared_memory(const std::string& name){...