-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
13. adding of eeg dataset with bayesian tests
- Loading branch information
Showing
23 changed files
with
112 additions
and
374 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
-13 Bytes
(100%)
imputegap/imputation/__pycache__/imputation.cpython-312.pyc
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
import os | ||
|
||
|
||
def get_file_path_dataset(set_name="test"): | ||
""" | ||
Find the accurate path for loading files of tests | ||
:return: correct file paths | ||
""" | ||
|
||
filepath = "../imputegap/dataset/" + set_name + ".txt" | ||
|
||
if not os.path.exists(filepath): | ||
filepath = filepath[1:] | ||
|
||
return filepath | ||
|
||
|
||
def get_save_path_asset(): | ||
""" | ||
Find the accurate path for saving files of tests | ||
:return: correct file paths | ||
""" | ||
filepath = "../tests/assets" | ||
|
||
if not os.path.exists(filepath): | ||
filepath = filepath[1:] | ||
|
||
return filepath |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Oops, something went wrong.