-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10 from esl-epfl/docs/readme
docs: basic readme
- Loading branch information
Showing
1 changed file
with
43 additions
and
0 deletions.
There are no files selected for viewing
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,43 @@ | ||
# SZcore | ||
|
||
## Background | ||
|
||
This repository hosts an open seizure detection benchmarking platform. | ||
The aim is to provide an open source platform for the community to submit their seizure detection algorithms and provide automatic benchmark results on various high quality datasets. | ||
|
||
## Usage | ||
|
||
Users can submit a containerized algorithm by opening a PR adding a yaml file in the `algorithms` directory. The yaml file should describe their algorithm following our schema (see example (LINK)) and point to a publicly available docker image based on our template (see config/template.Dockerfile). | ||
|
||
Once the PR is merged, this image is used to execute the algorithm on github actions, compute performance metrics and update a static website hosted on github pages. | ||
|
||
## Data flow | ||
|
||
```mermaid | ||
flowchart LR | ||
subgraph S3 | ||
EDF[edf] | ||
TSVr[TSV ref] | ||
TSVh[TSV s3hyp] | ||
end | ||
subgraph Github Actions CI | ||
EDF --> ALG{algo} | ||
C[yaml] --> ALG | ||
ALG --> TSVg[TSV gha] | ||
TSVg --> CIu{CI upload} | ||
TSVh --> F{eval} | ||
F --> G[json] | ||
G --> H{site builder} | ||
CIu --> TSVh | ||
TSVr --> F | ||
end | ||
subgraph Github pages | ||
H --> I[html] | ||
end | ||
``` | ||
|
||
## Acknowledgement | ||
|
||
This project was developed as part of the [ORD for the Sciences hackathon](https://sdsc-hackathons.ch/) organized by [EPFL Open Science](https://www.epfl.ch/research/open-science/) and [SDSC](http://datascience.ch/) by the team "zinalrothorn", composed of [@EishaMazhar](https://github.com/EishaMazhar), [@danjjl](https://github.com/danjjl), [@esthertsw](https://github.com/esthertsw) and [@cmdoret](https://github.com/cmdoret) |