megvii-research / hpman

A hyperparameter manager for deep learning experiments.
MIT License
95 stars 11 forks source link

attrdict is dead #5

Open bigeagle opened 5 years ago

bigeagle commented 5 years ago

https://github.com/bcj/AttrDict is archived by the owner and now an inactive project. I suggest switching to an active alternative.

sshao0516 commented 5 years ago

class Child(addict.Dict): def __init(self, *args, **kwargs): self.a

D = Child()

When accessing a nonexistent attribute in the `__init__` function of child class, an exception is caused: 

An RecursionError: maxinum recursion depth exceeded

bigeagle commented 5 years ago

Currently AttrDict is only used in HyperParameterOccurence. I recommend implementing it without AttrDict.

bigeagle commented 4 years ago

fixed in #4