Skip to content

Commit 991e3b4

Browse files
GiacomoGiacomo
authored andcommitted
[master] more speed, fixed an error on SI prior of multimeal
1 parent abf53f9 commit 991e3b4

31 files changed

+661
-288
lines changed

COPYING.md

100644100755
File mode changed.

README.md

100644100755
File mode changed.
48.8 KB
Binary file not shown.

dist/py_replay_bg-0.0.4.tar.gz

45.4 KB
Binary file not shown.

py_replay_bg.egg-info/PKG-INFO

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
Metadata-Version: 2.1
2+
Name: py-replay-bg
3+
Version: 0.0.4
4+
Summary: ReplayBG is a digital twin-based methodology to assess new strategies for type 1 diabetes management.
5+
Author-email: Giacomo Cappon <cappongiacomo@gmail.com>
6+
Project-URL: Homepage, https://github.com/gcappon/py_replay_bg
7+
Project-URL: Bug Tracker, https://github.com/gcappon/py_replay_bg/issues
8+
Classifier: Programming Language :: Python :: 3
9+
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
10+
Classifier: Operating System :: OS Independent
11+
Classifier: Intended Audience :: Science/Research
12+
Classifier: Topic :: Scientific/Engineering
13+
Requires-Python: >=3.9
14+
Description-Content-Type: text/markdown
15+
License-File: COPYING.md
16+
Requires-Dist: contourpy
17+
Requires-Dist: copulas
18+
Requires-Dist: coverage
19+
Requires-Dist: cycler
20+
Requires-Dist: exceptiongroup
21+
Requires-Dist: fonttools
22+
Requires-Dist: importlib-resources
23+
Requires-Dist: iniconfig
24+
Requires-Dist: joblib
25+
Requires-Dist: kiwisolver
26+
Requires-Dist: llvmlite
27+
Requires-Dist: matplotlib
28+
Requires-Dist: numba
29+
Requires-Dist: numpy
30+
Requires-Dist: openpyxl
31+
Requires-Dist: packaging
32+
Requires-Dist: pandas
33+
Requires-Dist: patsy
34+
Requires-Dist: Pillow
35+
Requires-Dist: plotly
36+
Requires-Dist: pluggy
37+
Requires-Dist: py-agata
38+
Requires-Dist: pyparsing
39+
Requires-Dist: pytest
40+
Requires-Dist: pytest-cov
41+
Requires-Dist: python-dateutil
42+
Requires-Dist: pytz
43+
Requires-Dist: scikit-learn
44+
Requires-Dist: scipy
45+
Requires-Dist: seaborn
46+
Requires-Dist: six
47+
Requires-Dist: statsmodels
48+
Requires-Dist: tenacity
49+
Requires-Dist: threadpoolctl
50+
Requires-Dist: tomli
51+
Requires-Dist: tqdm
52+
Requires-Dist: tzdata
53+
Requires-Dist: zeus-mcmc
54+
55+
# PyReplayBG
56+
57+
The official Python porting of the ReplayBG software: [https://github.com/gcappon/replay-bg/](https://github.com/gcappon/replay-bg/).
58+
59+
<img src="https://i.postimg.cc/gJn8Sy0X/replay-bg-logo.png" width="250" height="250">
60+
61+
[![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://github.com/gcappon/py_replay_bg/COPYING)
62+
[![GitHub commit](https://img.shields.io/github/last-commit/gcappon/py_replay_bg)](https://github.com/gcappon/py_replay_bg/commits/master)
63+
64+
ReplayBG is a digital twin-based methodology to assess new strategies for type 1 diabetes management.
65+
66+
# Reference
67+
68+
[G. Cappon, M. Vettoretti, G. Sparacino, S. Del Favero, A. Facchinetti, "ReplayBG: a digital twin-based methodology to identify a personalized model from type 1 diabetes data and simulate glucose concentrations to assess alternative therapies", IEEE Transactions on Biomedical Engineering, 2023, DOI: 10.1109/TBME.2023.3286856.](https://ieeexplore.ieee.org/document/10164140)

py_replay_bg.egg-info/SOURCES.txt

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
COPYING.md
2+
README.md
3+
pyproject.toml
4+
requirements.txt
5+
py_replay_bg/__init__.py
6+
py_replay_bg/py_replay_bg.py
7+
py_replay_bg.egg-info/PKG-INFO
8+
py_replay_bg.egg-info/SOURCES.txt
9+
py_replay_bg.egg-info/dependency_links.txt
10+
py_replay_bg.egg-info/requires.txt
11+
py_replay_bg.egg-info/top_level.txt
12+
py_replay_bg/data/__init__.py
13+
py_replay_bg/dss/__init__.py
14+
py_replay_bg/dss/default_dss_handlers.py
15+
py_replay_bg/environment/__init__.py
16+
py_replay_bg/identification/__init__.py
17+
py_replay_bg/identification/mcmc.py
18+
py_replay_bg/input_validation/__init__.py
19+
py_replay_bg/model/__init__.py
20+
py_replay_bg/model/t1d_model.py
21+
py_replay_bg/replay/__init__.py
22+
py_replay_bg/sensors/__init__.py
23+
py_replay_bg/tests/__init__.py
24+
py_replay_bg/tests/test_replay_bg.py
25+
py_replay_bg/utils/__init__.py
26+
py_replay_bg/utils/stats.py
27+
py_replay_bg/visualizer/__init__.py
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+

py_replay_bg.egg-info/requires.txt

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
contourpy
2+
copulas
3+
coverage
4+
cycler
5+
exceptiongroup
6+
fonttools
7+
importlib-resources
8+
iniconfig
9+
joblib
10+
kiwisolver
11+
llvmlite
12+
matplotlib
13+
numba
14+
numpy
15+
openpyxl
16+
packaging
17+
pandas
18+
patsy
19+
Pillow
20+
plotly
21+
pluggy
22+
py-agata
23+
pyparsing
24+
pytest
25+
pytest-cov
26+
python-dateutil
27+
pytz
28+
scikit-learn
29+
scipy
30+
seaborn
31+
six
32+
statsmodels
33+
tenacity
34+
threadpoolctl
35+
tomli
36+
tqdm
37+
tzdata
38+
zeus-mcmc
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
py_replay_bg

py_replay_bg/__init__.py

100644100755
File mode changed.

0 commit comments

Comments
 (0)