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
The file neurolib/utils/loadData.py should be called something like dataset.py because it only includes that class.
Data loading should be easier. Right now we have ds = Dataset("gw") and then model = ALNModel(Cmat=ds.Cmat, Dmat=ds.Dmat) but this could also be model = ALNModel(ds=ds)
The text was updated successfully, but these errors were encountered:
neurolib/utils/loadData.py
should be called something likedataset.py
because it only includes that class.ds = Dataset("gw")
and thenmodel = ALNModel(Cmat=ds.Cmat, Dmat=ds.Dmat)
but this could also bemodel = ALNModel(ds=ds)
The text was updated successfully, but these errors were encountered: