You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello,
I have a class like:
class A {
private:
caffe::Net* net_;
}
The constructor like:
A:A(){
net_ = new caffe::Net("**.prototxt");
}
A weird question was occurred:
When I use the class A like:
A = new A();
Everything is OK.
But when I use the class A like:
A a;
A crash happened ! After I run forward of net, I get a nan result.
The text was updated successfully, but these errors were encountered:
Hello,
I have a class like:
class A {
private:
caffe::Net* net_;
}
The constructor like:
A:A(){
net_ = new caffe::Net("**.prototxt");
}
A weird question was occurred:
When I use the class A like:
A = new A();
Everything is OK.
But when I use the class A like:
A a;
A crash happened ! After I run forward of net, I get a nan result.
The text was updated successfully, but these errors were encountered: