Loading from Networkx. Multiple node types

I am trying to load a tensor from a networkX graph and I’m getting this error:
“Expected object of scalar type Float but got scalar type Int for sequence element 2 in sequence argument at position #1 ‘tensors’”

Does loading from networkX only support scalars features?

Hi, by default from_networkx(G) will only return graph topology. We allow users to pass two iterable of str to specify the node/edge features they want to include. See the doc.