GraphGallery 0.1.8
Changes:
- Add DAGNN implementation
- fix some typos
- rewrite
__getattr__
inBaseModel
, so most of the attributes can be used when callingmodel.attr
instead ofmodel.model.attr
, e.g.,model.summary
equalsmodel.model.summary
if has this attributemodel.layers
equalsmodel.model.layers
if has this attributemodel.weights
equalsmodel.model.weights
if has this attribute- others like
get_weights()
,trainable_variables
,variables
are the same