Skip to content

Commit

Permalink
called default tensorNet constructors
Browse files Browse the repository at this point in the history
  • Loading branch information
dusty-nv committed Sep 18, 2016
1 parent 937a4f9 commit 1f0556f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion detectNet.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@


// constructor
detectNet::detectNet()
detectNet::detectNet() : tensorNet()
{
mCoverageThreshold = 0.5f;
}
Expand Down
2 changes: 1 addition & 1 deletion imageNet.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const char* OUTPUT_BLOB_NAME = "prob";


// constructor
imageNet::imageNet()
imageNet::imageNet() : tensorNet()
{
mOutputClasses = 0;
}
Expand Down

0 comments on commit 1f0556f

Please sign in to comment.