minor changes

Esse commit está contido em:
Mahdad Jafarzadehesfahani
2022-07-07 10:11:40 +02:00
commit 9798589a15
7 arquivos alterados com 5 adições e 5 exclusões
Arquivo binário não exibido.

Antes

Largura:  |  Altura:  |  Tamanho: 124 KiB

BIN
Ver Arquivo
Arquivo binário não exibido.
+1 -1
Ver Arquivo
@@ -50,6 +50,7 @@ python mainwindow.py
### FAQ:
*1. What sources of informaion we can collect?*
Basically whatever that the Zmax Hypnodyne wearable can collect in addition to other information regarding stimulation, annotations assignment, and autoscoring, e.g., stimulation properties (color of light, intensity, etc), exact time (accurate up to the number of sample), autoscoring (real-time scored data output)
*2. How to post-process the data*
@@ -59,7 +60,6 @@ conda activate dreamento
python mainwindow.py
```
Please note that this program is provided with no warranty of any kind.
**CITATION:**
+2 -2
Ver Arquivo
@@ -9,7 +9,7 @@ from minibatching import (iterate_minibatches,
sleepScoringModel = realTimeAutoScoring.importModel("./out_QS/train/21")
recording = np.loadtxt(".\\2021-08-19 Pilot 8 Saba\\recording-date-2021-08-19-time-07-26-40-complete.txt", delimiter=',')
recording = np.loadtxt(".\\path_to_data.txt", delimiter=',')
recordingValid = recording[recording[:,4]!=1]
fs = 256
T = 30
@@ -116,7 +116,7 @@ else:
# mark_REM = 'active', write_metrics = False,
# Title = 'True Hyp_'+ Name , save_fig = False,\
# directory = "./")
# directory = "P:/3022033.01/FilesForMathijs/daily_zmax_autoscoring/daily_zmax_hypnograms/
# directory = "path/
# sampling_rate = 256
# lowcut = 0.3
+1 -1
Ver Arquivo
@@ -3,7 +3,7 @@ import numpy as np
sleepScoringModel = realTimeAutoScoring.importModel("./out_QS/train/21")
recording = np.loadtxt(".\\2021-08-19 Pilot 8 Saba\\recording-date-2021-08-19-time-07-26-40-complete.txt", delimiter=',')
recording = np.loadtxt("path/to_data.txt", delimiter=',')
dataSamplesToAnalyzeBeginIndex = 0
dataSampleCounter = 0
+1 -1
Ver Arquivo
@@ -6,7 +6,7 @@ import matplotlib.pyplot as plt
from scipy import signal
dataset = np.loadtxt(".\\Teressa_rec.txt", delimiter=',')
dataset = np.loadtxt("path/to/data.txt", delimiter=',')
data = dataset[10*256:(10+30)*256,0]
# data = signal.resample(data, int(len(data)/256*100))
BIN
Ver Arquivo
Arquivo binário não exibido.