masonhargrave commited on
Commit
572d1a0
Β·
verified Β·
1 Parent(s): 26d1f51

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +82 -0
README.md CHANGED
@@ -1,3 +1,85 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: unlicense
3
  task_categories:
 
1
+ # EpiCare Dataset README
2
+
3
+ ## Overview
4
+
5
+ This repository contains a dataset of 64 `.hdf5` files following the D4RL format standard, designed for use in testing offline reinforcement learning (RL) and off-policy evaluation (OPE) methods. The dataset is split into train and test files for two behavior policies (SMART and SoC) on the EpiCare environment.
6
+
7
+ The EpiCare environment, described in detail in our [project repository](https://github.com/masonhargrave/EpiCare), is a benchmark designed to mimic the challenges associated with applying RL to longitudinal healthcare settings. This dataset is useful for evaluating the performance of RL models in these complex scenarios.
8
+
9
+ ## Directory Structure
10
+
11
+ The dataset is organized into the following directory structure:
12
+
13
+ ```
14
+ smart/
15
+ β”œβ”€β”€ test_seed_1.hdf5
16
+ β”œβ”€β”€ test_seed_2.hdf5
17
+ β”œβ”€β”€ test_seed_3.hdf5
18
+ β”œβ”€β”€ test_seed_4.hdf5
19
+ β”œβ”€β”€ test_seed_5.hdf5
20
+ β”œβ”€β”€ test_seed_6.hdf5
21
+ β”œβ”€β”€ test_seed_7.hdf5
22
+ β”œβ”€β”€ test_seed_8.hdf5
23
+ β”œβ”€β”€ train_seed_1.hdf5
24
+ β”œβ”€β”€ train_seed_2.hdf5
25
+ β”œβ”€β”€ train_seed_3.hdf5
26
+ β”œβ”€β”€ train_seed_4.hdf5
27
+ β”œβ”€β”€ train_seed_5.hdf5
28
+ β”œβ”€β”€ train_seed_6.hdf5
29
+ β”œβ”€β”€ train_seed_7.hdf5
30
+ β”œβ”€β”€ train_seed_8.hdf5
31
+ soc/
32
+ β”œβ”€β”€ test_seed_1.hdf5
33
+ β”œβ”€β”€ test_seed_2.hdf5
34
+ β”œβ”€β”€ test_seed_3.hdf5
35
+ β”œβ”€β”€ test_seed_4.hdf5
36
+ β”œβ”€β”€ test_seed_5.hdf5
37
+ β”œβ”€β”€ test_seed_6.hdf5
38
+ β”œβ”€β”€ test_seed_7.hdf5
39
+ β”œβ”€β”€ test_seed_8.hdf5
40
+ β”œβ”€β”€ train_seed_1.hdf5
41
+ β”œβ”€β”€ train_seed_2.hdf5
42
+ β”œβ”€β”€ train_seed_3.hdf5
43
+ β”œβ”€β”€ train_seed_4.hdf5
44
+ β”œβ”€β”€ train_seed_5.hdf5
45
+ β”œβ”€β”€ train_seed_6.hdf5
46
+ β”œβ”€β”€ train_seed_7.hdf5
47
+ β”œβ”€β”€ train_seed_8.hdf5
48
+ ```
49
+
50
+ ## Behavior Policies
51
+
52
+ ### SMART Policy
53
+
54
+ The Sequential Multiple Assignment Randomized Trial (SMART) policy models treatment selection for a simulated clinical trial. This policy adheres to a weighted random selection process where each treatment's likelihood of selection is based on its expected reward. The SMART policy is widely used in clinical trials to balance exploration and exploitation, providing synthetic clinical trial data for training RL models.
55
+
56
+ ### SoC Policy
57
+
58
+ The Standard of Care (SoC) policy aims to simulate the performance of a hypothetical clinician following best practices without access to latent disease states. This policy models a conservative approach to treatment selection, avoiding actions that would exacerbate any current symptoms beyond a safe threshold. The SoC policy serves as a baseline to compare the performance and safety of RL algorithms.
59
+
60
+ ## Seeds and Environment Generation
61
+
62
+ The `seed` number in each file name refers to the random seed used to generate the EpiCare environment. Each seed creates a distinct EpiCare environment, which can be thought of as representing a completely different disease population. This variability allows researchers to evaluate the generalizability of their models across diverse simulated patient cohorts.
63
+
64
+ ## Dataset Details
65
+
66
+ Each `.hdf5` file contains 131,072 episodes of data, effectively representing that many patients. Each episode consists of a maximum of 8 time steps.
67
+
68
+ ## Usage
69
+
70
+ This dataset can be used to test and benchmark offline RL and OPE methods. The `.hdf5` files are compatible with the D4RL format, making them easy to integrate with existing RL frameworks and libraries. Researchers can use this dataset to train and evaluate their models, ensuring reproducibility and comparability of results.
71
+
72
+ ## Reference
73
+
74
+ For more details on the EpiCare environment and the design considerations behind this dataset, please refer to the accompanying paper and visit our [project repository](https://github.com/masonhargrave/EpiCare).
75
+
76
+ ## Contact
77
+
78
+ For questions or support, please contact:
79
+
80
+ - Mason Hargrave ([email protected])
81
+ - Alex Spaeth ([email protected])
82
+ - Logan Grosenick ([email protected])
83
  ---
84
  license: unlicense
85
  task_categories: