Skip to content

Commit 164c7d0

Browse files
committed
Cleanup comment and default arg in example
1 parent 236ea05 commit 164c7d0

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

examples/cpp/main.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,7 @@ int main(int argc, char* argv[]) try {
3030
}
3131

3232
// Instantiate Object Detection model
33-
auto model =
34-
DetectionModel::create_model(argv[1], {}); // works with SSD models. Download it using Python Model API
33+
auto model = DetectionModel::create_model(argv[1]);
3534

3635
// Run the inference
3736
auto result = model.infer(image);

0 commit comments

Comments
 (0)