Ran into the situation where calling set_defaults() seriously degraded network performance for a DNN running in NengoLoihi Emulator. Turns out the first layer in the network, which we'd designated to run off-chip, was having all the initial voltages set to 0.0 as part of the set_defaults() call. Since it's running off-chip there's no need for this, so it would be nice to have a check to see if an ensemble is designated to run off-chip or not before setting its neurons initial voltages to 0.0.