Philipp Thölke

Results 41 comments of Philipp Thölke

The reference node is just an empty node I add to the editor at the start of the program, which has a fixed location (e.g. [-5000, -5000]). This node serves...

Actually this works quite well now. I set the reference node's position to the origin (0, 0) and configure its theme to be completely hidden (i.e. transparent background and empty...

Thanks @v-ein! Hiding the node after one frame with `set_frame_callback` works but unfortunately breaks the workaround for determining the mouse position. It seems like `dpg.get_item_state("_ref")["rect_min"]` doesn't get updated for hidden...

I'm not sure why overwriting `log_dir` doesn't work properly when `load_model` is set. The arguments are parsed in the order as they are defined in train.py. Since `--load-model` is the...

I somehow thought that arguments are parsed in the order in which they are defined in the code but a quick test showed that this is clearly not true. So...

It looks like training stopped after 4 epochs since the error occurred while calling `trainer.test` in the training script. After `fit` we load the best model checkpoint and then evaluate...

This shouldn't be very complicated to add. It might be useful to implement this in two different modes: 1. button press when the threshold on an input signal is surpassed...

We have a couple of connectivity measures that come more from M/EEG analysis, I'm not sure if they are helpful in your case. Otherwise it's possible to compute per-subject metrics...

We now have a Cardio-respiratory Variability node thanks to @sangfrois ! https://github.com/PhilippThoelke/goofi-pipe/blob/main/src/goofi/nodes/analysis/cardiorespiratoryvariability.py To compute correlations between two (or more) participants you can pass any metric into a buffer and then...

For anyone encountering this issue, the nodes grow proportional to the amount of horizontal padding each frame so it's possible to prevent the issue by setting the horizontal padding to...