ConMedRL 1.0.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,51 @@
1
+ """
2
+ ConCare-RL: An Offline Constrained Reinforcement Learning Toolkit for Critical Care Decision Making
3
+
4
+ This package provides the core OCRL framework for critical care decision support,
5
+ including policy evaluation, policy optimization, and data handling utilities.
6
+
7
+ Authors: Maotong Sun (maotong.sun@tum.de), Jingui Xie (jingui.xie@tum.de)
8
+ """
9
+
10
+ __version__ = "1.0.0"
11
+ __author__ = "Maotong Sun, Jingui Xie"
12
+ __email__ = "maotong.sun@tum.de, jingui.xie@tum.de"
13
+
14
+ # Core OCRL components
15
+ from .conmedrl import (
16
+ FCN_fqe,
17
+ FCN_fqi,
18
+ ReplayBuffer,
19
+ FQE,
20
+ FQI,
21
+ RLConfig_custom,
22
+ RLConfigurator,
23
+ RLTraining
24
+ )
25
+
26
+ # Data loading utilities
27
+ from .data_loader import (
28
+ TrainDataLoader,
29
+ ValTestDataLoader
30
+ )
31
+
32
+ __all__ = [
33
+ # Core OCRL classes
34
+ 'FCN_fqe',
35
+ 'FCN_fqi',
36
+ 'ReplayBuffer',
37
+ 'FQE',
38
+ 'FQI',
39
+ 'RLConfig_custom',
40
+ 'RLConfigurator',
41
+ 'RLTraining',
42
+
43
+ # Data loading classes
44
+ 'TrainDataLoader',
45
+ 'ValTestDataLoader',
46
+
47
+ # Package metadata
48
+ '__version__',
49
+ '__author__',
50
+ '__email__'
51
+ ]