There is the following warning in the first step of preprocessing:
mimic3-benchmarks/mimic3benchmark/scripts/extract_subjects.py:64: YAMLLoadWarning: calling yaml.load() without Loader=... is deprecated, as the default Loader is unsafe. Please read https://msg.pyyaml.org/load for full details.
The warning is there due to arbitrary shell execution of the deprecated yaml.open .
Adding Loader = yaml.SafeLoader suppreses the warning. I checked that the yaml file we use if for (HCUP complex disease definition) does not have any special character and is parsed safely.
There is the following warning in the first step of preprocessing:
mimic3-benchmarks/mimic3benchmark/scripts/extract_subjects.py:64: YAMLLoadWarning: calling yaml.load() without Loader=... is deprecated, as the default Loader is unsafe. Please read https://msg.pyyaml.org/load for full details.
The warning is there due to arbitrary shell execution of the deprecated yaml.open .
Adding Loader = yaml.SafeLoader suppreses the warning. I checked that the yaml file we use if for (HCUP complex disease definition) does not have any special character and is parsed safely.