Refitting On_ACID results #1196
Answered
by
kushalkolar
StoyoKaramihalev
asked this question in
Q&A
-
Beta Was this translation helpful? Give feedback.
Answered by
kushalkolar
Oct 18, 2023
Replies: 1 comment 3 replies
-
You should be able to pass in the spatial footprints you find a the end of OnACID-E to the OnACID constructor as CaImAn/caiman/source_extraction/cnmf/online_cnmf.py Lines 99 to 101 in 9b0b79c I wonder what you would get if you gave it the existing model instead? I would try: oncacid_obj # from previous run
onacid_iter2 = OnACID(params=same_params, Ain=onacid_obj.estimates.A)
# not entirely sure what this would do, Johanness would have a better answer
onacid_iter2 = OnACID(params=same_params, estimates=onacid_obj.estimates) |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
StoyoKaramihalev
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You should be able to pass in the spatial footprints you find a the end of OnACID-E to the OnACID constructor as
Ain
, see here:CaImAn/caiman/source_extraction/cnmf/online_cnmf.py
Lines 99 to 101 in 9b0b79c
I wonder what you would get if you gave it the existing model instead? I would try: