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
Hi, first of all, thank you for making the code of your paper publicly available! 🙌 I'm currently using it as part of my research and have encountered some issues/questions that I hope you can help clarify.
In the file src/batcher/make.py at line 3, there is the following import:
fromsrc.batcher.baseimportBaseBatcher
However, it seems that BaseBatcher is not available in src/batcher/base.py.
I'm also trying to figure out how to feed data into the model and, in an abstract sense, understand the expected structure and shape of the input data. At this stage, my focus is on the input requirements rather than the specific nature of the data (e.g., whether it's EEG or not). Here's my current code:
How should I properly prepare and format the input data for the model?
For example, what should the structure and shape of the input look like?
(I tried using batcher, but there is no BaseBatcher)
Please consider that I'm confident using PyTorch, but I'm a beginner with EEG data. If there are any resources you recommend, I'd greatly appreciate it.
Also, I have read the discussion in issue #3, but I still need clarification on these points. Thank you!
The text was updated successfully, but these errors were encountered:
Thanks for Sharing Your Code!
Hi, first of all, thank you for making the code of your paper publicly available! 🙌 I'm currently using it as part of my research and have encountered some issues/questions that I hope you can help clarify.
In the file
src/batcher/make.py
at line 3, there is the following import:However, it seems that BaseBatcher is not available in
src/batcher/base.py
.I'm also trying to figure out how to feed data into the model and, in an abstract sense, understand the expected structure and shape of the input data. At this stage, my focus is on the input requirements rather than the specific nature of the data (e.g., whether it's EEG or not). Here's my current code:
Unfortunately, I encountered this error:
The error seems to originate from the following snippet in
embedder/csm_causal.py
:Could you please clarify:
How should I properly prepare and format the input data for the model?
For example, what should the structure and shape of the input look like?
(I tried using batcher, but there is no BaseBatcher)
Please consider that I'm confident using PyTorch, but I'm a beginner with EEG data. If there are any resources you recommend, I'd greatly appreciate it.
Also, I have read the discussion in issue #3, but I still need clarification on these points. Thank you!
The text was updated successfully, but these errors were encountered: