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
Copy file name to clipboardExpand all lines: docs/speck/visualizer.md
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -131,6 +131,7 @@ hardware_compatible_model.to(
131
131
In order to visualize the class outputs as images, we need to get the images. The images should be passed in the same order as the output layer of the network. Important! <br>
132
132
- If you want to visualize power measurements during streaming inference, set `add_power_monitor_plot`=`True`.
133
133
- If you want to visualize readout images as class predictions during streaming you need to pass `add_readout_plot`=`True`.
134
+
- If you don't want to visualize spike counts of output classes as line graphs over time during streaming you need to pass `add_spike_count_plot`=`False`.
134
135
- In order to show a prediction for each `N` milliseconds, set the parameter `spike_collection_interval`=`N`.
135
136
- In order to show the images, the paths of these images should be passed to `readout_images` parameter.
136
137
- In order to show a prediction only if there are more than a `threshold` number of events from that output, set the `readout_prediction_threshold`=`threshold`.
@@ -172,4 +173,4 @@ The example script that runs the visualizer can be found under `/examples/visual
172
173
173
174
174
175
#### MacOS users
175
-
Due to the difference in the behaviour of python's multiprocessing library on MacOS, you should run the `examples/visualizer/gesture_viz.py` script with `-i` flag. `python -i /examples/visualizer/gesture_viz.py` .
176
+
Due to the difference in the behaviour of python's multiprocessing library on MacOS, you should run the `examples/visualizer/gesture_viz.py` script with `-i` flag. `python -i /examples/visualizer/gesture_viz.py` .
0 commit comments