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
fix(inputs,algorithms,connect): deprecation aliases, regression fits, CSR guard, dtype/off-by-one
- spike_current/ramp_current deprecation aliases forwarded to constant_input
with wrong kwargs (crash); forward to spike_input/ramp_input (Critical)
- LogisticRegression.call crashed (flattened targets then read .shape[1]);
init a 1-D parameter vector (Critical)
- ElasticNetRegression trained with default add_bias=True while predict used
self.add_bias -> feature mismatch crash; pass add_bias=self.add_bias (High)
- CSRConn.build_csr guard "pre_num != pre_num" was a tautology; compare against
inptr.size-1 and raise on inconsistent pre_size (High)
- connect.coo2csr scattered int counts into a uint32 buffer (int32->uint32
warning, future JAX error); use get_idx_type() (Medium)
- polynomial_features allocated one extra always-zero column (off-by-one) (Medium)
Findings recorded in docs/issues-found-20260619-small-modules.md
0 commit comments