Clarification on continuous_index
Handling Multi-Variable Inputs in CEBRA
#198
-
Hi, I’m working with the CEBRA AI package, specifically in the multi-session training setup. I have a question regarding the For example, if I pass a 2D numpy array with the shape (n, 3) as the
I would appreciate any clarification on how |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi @Barbod1380 , by default, all continuous features are processed together, this is done due to how distance are calculated here CEBRA/cebra/distributions/index.py Lines 76 to 99 in 5f46c32 It would be possible to specify a component-wise handling based on your application example. For that
Please let me know if that addresses your question! |
Beta Was this translation helpful? Give feedback.
Hi @Barbod1380 , by default, all continuous features are processed together, this is done due to how distance are calculated here
CEBRA/cebra/distributions/index.py
Lines 76 to 99 in 5f46c32