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
Tested the install via pip per #2 and worked fine. However, working through the tutorials and noticed:
The tutorial import statements have not been updated to reflect the pypi packaged namespace
Getting errors in alegnn/modules/architectures.py where incorrect module namespaces are used in evals
NameErrorTraceback (mostrecentcalllast)
<ipython-input-45-e62203175260>in<module>23#\\\ Architecture---->4thisArchit=archit.AggregationGNN(# Linear5hParamsAggGNN['F'],
6hParamsAggGNN['K'],
~/src/pytorch-learn/ENV/lib/python3.9/site-packages/alegnn/modules/architectures.pyin__init__(self, dimFeatures, nFilterTaps, bias, nonlinearity, poolingFunction, poolingSize, dimLayersMLP, GSO, order, maxN, nNodes, dimLayersAggMLP)
3031# We need to be sure that the function 'perm' + self.reorder3032# is available in the Utils.graphTools module.->3033self.permFunction=eval('Utils.graphTools.perm'+order)
3034else:
3035self.permFunction=alegnn.utils.graphTools.permIdentity~/src/pytorch-learn/ENV/lib/python3.9/site-packages/alegnn/modules/architectures.pyin<module>NameError: name'Utils'isnotdefined
The text was updated successfully, but these errors were encountered:
I temporarily reverted all the changes since b32984, where this worked before. The new branch pip contains these commits now. I will update the tutorials as well.
Tested the install via
pip
per #2 and worked fine. However, working through the tutorials and noticed:alegnn/modules/architectures.py
where incorrect module namespaces are used in evalsThe text was updated successfully, but these errors were encountered: