Closed jakeoung closed 2 years ago
First of all, thanks for this amazing library.
I try to run on Jupyter notebook with a config file, but I get the following error message:
AttributeError: 'str' object has no attribute 'copy'
I use this kind of code: args = pyrallis.load(TrainConfig, "a.yaml")
args = pyrallis.load(TrainConfig, "a.yaml")
Do you have any idea of using pyrallis on notebooks?
I've resolved the issue, by using args = pyrallis.load(TrainConfig, open("a.yaml", "r"))
First of all, thanks for this amazing library.
I try to run on Jupyter notebook with a config file, but I get the following error message:
AttributeError: 'str' object has no attribute 'copy'
I use this kind of code:
args = pyrallis.load(TrainConfig, "a.yaml")
Do you have any idea of using pyrallis on notebooks?