stellargraph

Cannot install stellargraph

Cannot install stellargraph Question: I am trying to install stellargraph package. I created a new conda environment with python 3.6 and tried to install it with pip install stellargraph but when I try to write import stellargraph in jupyter, it says ModuleNotFoundError: No module named ‘stellargraph’. I also tried it with PyCharm to create a …

Total answers: 1

StellarGraph PaddedGraphGenerator – how to provide specific training, validation and test sets

StellarGraph PaddedGraphGenerator – how to provide specific training, validation and test sets Question: I’m trying to train a basic Graph Neural Network using the StellarGraph library, in particular starting from the example provided in [0]. The example works fine, but now I would like to repeat the same exercize removing the N-Fold Crossvalidation and providing …

Total answers: 1

How to add new edges to the stellargraph dataset?

How to add new edges to the stellargraph dataset? Question: I need to add some extra edges to Cora dataset using stellargraph. Is there ane way to add edges to the current dataset in stellargraph library? import stellargraph as sg dataset = sg.datasets.Cora() For example in NetworkX, we can add some edges to the existing …

Total answers: 3