Just a very minor inconvenience when switching between Nengo and Nengo-DL. In Nengo, the default for sim.run and sim.run_steps is progress_bar=None which inherits the progress bar from the constructor. But in Nengo-DL the default is progress_bar=True. This means I need to disable the progress bar in 2 places rather than 1.
Just a very minor inconvenience when switching between Nengo and Nengo-DL. In Nengo, the default for
sim.run
andsim.run_steps
isprogress_bar=None
which inherits the progress bar from the constructor. But in Nengo-DL the default isprogress_bar=True
. This means I need to disable the progress bar in 2 places rather than 1.