Skip to content
This repository was archived by the owner on May 11, 2024. It is now read-only.

Commit 767d742

Browse files
author
Tony Reina
committed
Updating test sample index
1 parent c66beae commit 767d742

5 files changed

+246
-175
lines changed

2D/01_Train-Solution.ipynb

+12-146
Large diffs are not rendered by default.

2D/02_Inference-Solution.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@
262262
"metadata": {},
263263
"outputs": [],
264264
"source": [
265-
"plot_results(ds_testing, 23)"
265+
"plot_results(ds_testing, 25)"
266266
]
267267
},
268268
{

2D/03_Inference-OpenVINO.ipynb

+231-26
Large diffs are not rendered by default.

2D/plot_openvino_inference_examples.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ def plot_results(ds, idx, png_directory, exec_net, input_layer_name, output_laye
160160
# Plot some results
161161
# The plots will be saved to the png_directory
162162
# Just picking some random samples.
163-
indicies_testing = [11,17,23,56,89,101,119]
163+
indicies_testing = [11,17,25,56,89,101,119]
164164

165165
for idx in indicies_testing:
166166
plot_results(ds_testing, idx, png_directory, exec_net, input_layer_name, output_layer_name)

2D/plot_tf_inference_examples.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ def plot_results(ds, idx, png_directory):
170170
# Plot some results
171171
# The plots will be saved to the png_directory
172172
# Just picking some random samples.
173-
indicies_testing = [11,17,23,56,89,101,119]
173+
indicies_testing = [11,17,25,56,89,101,119]
174174

175175
for idx in indicies_testing:
176176
plot_results(ds_testing, idx, png_directory)

0 commit comments

Comments
 (0)