Update README.md

This commit is contained in:
David Rotermund 2023-07-10 18:23:18 +02:00 committed by GitHub
parent 80e5234105
commit 65b7ff1e68
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -21,3 +21,35 @@ numpy scipy pandas flake8 pep8-naming black matplotlib seaborn ipython jupyterla
Not all packages are necessary (probably these are enougth: torch torchaudio torchvision roipoly natsort numpy matplotlib) but this is our default in-house installation plus roipoly. Not all packages are necessary (probably these are enougth: torch torchaudio torchvision roipoly natsort numpy matplotlib) but this is our default in-house installation plus roipoly.
We used a RTX 3090 as test GPU. We used a RTX 3090 as test GPU.
## Data processing chain
### SVD
- start automatic_load
- try to load previous mask: NOT found
- start cleaned_load_data
- start load_data
- work in XXXX.npy
- np.load
- organize acceptor
- organize donor
- move axis
- move intra timeseries
- rotate inter timeseries
- move inter timeseries
- spatial pooling
- data(x,y,t) -= data(x,y,t).mean(t) + 1
- remove the heart beat via SVD
- remove mean
- remove linear trends
- remove heart beat (heartbeat_scale)
- apply bandpass donor_residuum (filtfilt)
- apply bandpass acceptor_residuum (filtfilt)
- calculate mask (optinal)
- don't use regression
- scale acceptor and donor signals
- update inital mask
- end automatic_load