hb-config icon indicating copy to clipboard operation
hb-config copied to clipboard

hb-config: easy to configure your python project especially Deep Learning experiments

Results 4 hb-config issues
Sort by recently updated
recently updated
newest added

I used hb-config in python3.7 environment and got the following errors: ``` /opt/conda/lib/python3.7/site-packages/hbconfig/__init__.py:66: YAMLLoadWarning: calling yaml.load() without Loader=... is deprecated, as the default Loader is unsafe. Please read https://msg.pyyaml.org/load for...

when i from hb_config import Config, get an error: Traceback (most recent call last): File "", line 1, in File "/home/yangjing/.local/lib/python3.5/site-packages/hbconfig/__init__.py", line 40 raise FileNotFoundError(f"No such files start filename '{fname}'")...

when I'm trying to send the Config as a parameter to another function, sometimes it brings up the error.

suggest convert the python print function to low version, eg: `print(f’abc{value}’)` to `print(‘abc{}’.format(value)) ` so it can support not only python3.6 but other versions as well.