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
Using this function with default arguments to extract data. Works well, but so much data takes a long time. I tried to speed up by only asking for what I want. I tried the follow:
onekey argument
excluded_keys argument
excluded_keys
this is the best hack around accessing just 1 key so you are not pulling all 2-time and roi intensity with time data if you just want an average image or g2b and tb. Did notice, that accessing 2time data (g12b ) is only 2 seconds on the server, but the gateway must be bogging down the communication to the notebook.
onekey
tried onekey = 'md', onekey = 'g12b', onekey = 'avg_img', onekey = 'imgsum' and all behaved the same way.
tried to implement the approach i used in my own editing of the function.
For my own function, the change i made doesn't seem to help though it seems to me to be exactly what was done in the debug function for the 'onekey' not None block. The debug function cannot extract md or g12b. Didn't try others.
For the the "_debug" version, not applying any extra arguments, there is an error so it seems this is also a work in progress. This is with default excluded_keys and default onekey
note to self or others new to this library. don't name a list of exlcuded_keys "get_avg_img" because this is a function in standard pyCHX imports to calculate the average images (which I guess is what generated the array found in the pyCHX results file.
pyCHX/pyCHX/Create_Report.py
Line 1826 in 6ae0293
Using this function with default arguments to extract data. Works well, but so much data takes a long time. I tried to speed up by only asking for what I want. I tried the follow:
excluded_keys
this is the best hack around accessing just 1 key so you are not pulling all 2-time and roi intensity with time data if you just want an average image or g2b and tb. Did notice, that accessing 2time data (
g12b
) is only 2 seconds on the server, but the gateway must be bogging down the communication to the notebook.onekey
tried
onekey = 'md'
,onekey = 'g12b'
,onekey = 'avg_img'
,onekey = 'imgsum'
and all behaved the same way.It seems that
pyCHX/pyCHX/v2/_futurepyCHX/Create_Report.py
Line 2192 in 6ae0293
For my own function, the change i made doesn't seem to help though it seems to me to be exactly what was done in the debug function for the 'onekey' not None block. The debug function cannot extract
md
org12b
. Didn't try others.For the the "_debug" version, not applying any extra arguments, there is an error so it seems this is also a work in progress. This is with default
excluded_keys
anddefault onekey
The text was updated successfully, but these errors were encountered: