Skip to content

Commit 9f3319d

Browse files
committed
code cleanup
1 parent 23dc20e commit 9f3319d

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/onnx_gdf_parser.cpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -533,13 +533,11 @@ int parseOnnxGraph(
533533
if(node_proto.input_size() > 1) {
534534
std::string layer_weights = node_proto.input(1);
535535
layer_details["weights"] = layer_weights;
536-
std::cout << "Weights added " << std::endl;
537536
}
538537

539538
if(node_proto.input_size() > 2) {
540539
std::string layer_bias = node_proto.input(2);
541540
layer_details["bias"] = layer_bias;
542-
std::cout << "Bias added is: " << layer_bias << std::endl;
543541
}
544542

545543
net[i] = layer_details;

0 commit comments

Comments
 (0)