You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When read_yaml function is used, I get the following warning:
/anaconda3/envs/kipoi-shared__envs__kipoi-py3-keras2/lib/python3.6/site-packages/kipoi_utils/utils.py:475: YAMLLoadWarning: calling yaml.load() without Loader=... is deprecated, as the default Loader is unsafe. Please read https://msg.pyyaml.org/load for full details. return yaml.load(f)
This link explains that one of BaseLoader, SafeLoader, FullLoader and UnsafeLoader should be specified to get rid of the warning.
The text was updated successfully, but these errors were encountered:
When
read_yaml
function is used, I get the following warning:/anaconda3/envs/kipoi-shared__envs__kipoi-py3-keras2/lib/python3.6/site-packages/kipoi_utils/utils.py:475: YAMLLoadWarning: calling yaml.load() without Loader=... is deprecated, as the default Loader is unsafe. Please read https://msg.pyyaml.org/load for full details. return yaml.load(f)
This link explains that one of
BaseLoader
,SafeLoader
,FullLoader
andUnsafeLoader
should be specified to get rid of the warning.The text was updated successfully, but these errors were encountered: