finished feature detection with neurokit2
parent
ab61e67f92
commit
2a8916acdd
|
@ -1 +1,2 @@
|
||||||
/data/
|
/data/
|
||||||
|
/settings.json
|
File diff suppressed because one or more lines are too long
Binary file not shown.
|
@ -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 = {}
|
||||||
|
|
|
@ -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],
|
||||||
|
|
Loading…
Reference in New Issue