It serve as python package to download and process Cardio and Brain signal database available as opensource
pip install pybiosigdt
>>> import pybiosigdt as sigdt
>>> data = sigdt.Databases(name="mit-bih-arrhythmia")
>>> data.describe(clip=True)
https://physionet.org/content/mitdb/1.0.0/
>>>data.tensor() #to convert to tensors
>>>train_data,train_label,test_data,test_labels = data.split(split_size = 0.2, seed = 42)
For more examples, see the TensorFlow tutorials.
Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are greatly appreciated.
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request