Skip to content

Commit

Permalink
removed underscores from session names as they are also not allowed
Browse files Browse the repository at this point in the history
  • Loading branch information
Samuel-Boehm committed Jan 16, 2025
1 parent 83eabc0 commit 642cc6e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions moabb/datasets/BEETL.py
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ def _get_single_subject_data(self, subject):
)
)

return {"0": {f"0{self.phase}_train": raw, f"1{self.phase}_test": test_raw}}
return {"0": {f"0{self.phase}train": raw, f"1{self.phase}test": test_raw}}

def data_path(
self, subject, path=None, force_update=False, update_path=None, verbose=None
Expand Down Expand Up @@ -463,7 +463,7 @@ def _get_single_subject_data(self, subject):
)
)

return {"0": {f"0{self.phase}_train": raw, f"1{self.phase}_test": test_raw}}
return {"0": {f"0{self.phase}train": raw, f"1{self.phase}test": test_raw}}

def data_path(
self, subject, path=None, force_update=False, update_path=None, verbose=None
Expand Down

0 comments on commit 642cc6e

Please sign in to comment.