finished feature detection with neurokit2

main
Felix Jan Michael Mucha 2024-06-03 20:52:06 +02:00
parent ab61e67f92
commit 2a8916acdd
5 changed files with 802 additions and 3 deletions

1
.gitignore vendored
View File

@ -1 +1,2 @@
/data/ /data/
/settings.json

File diff suppressed because one or more lines are too long

View File

@ -25,7 +25,7 @@ def load_data(only_demographic:bool=False, path_settings:str="../settings.json")
dict: A dictionary containing the loaded data. dict: A dictionary containing the loaded data.
""" """
settings = json.load(open(path_settings)) settings = json.load(open(path_settings))
path_data = settings["path_data"] #'C:/Studium/dsa/data' path_data = settings["data_path"]
labels = settings["labels"] labels = settings["labels"]
data = {} data = {}

View File

@ -1,6 +1,6 @@
{ {
"data_path_comment": "Path to the data folder. This is the folder where the data is stored.", "data_path_comment": "Path to the data folder. This is the folder where the data is stored.",
"data_path": "./data", "data_path": "C:/Studium/dsa/data",
"labels_comment": "Labels for the different classes. The labels are the SNOMED CT codes.", "labels_comment": "Labels for the different classes. The labels are the SNOMED CT codes.",
"labels": { "labels": {
"SB": [426177001], "SB": [426177001],