I am looking to use DGL or pytorch geometric for building my policy and value networks in stable baselines, however I am struggling to figure out how to send over observations. The observations must be one of the gym spaces
class but I am not sure how to send a graph object that can be used by DGL or Pytorch geometric in this way.
The fundamental question I have is how to send graph observations and where to do the prepossessing necessary to use DGL or pytorch geometric for a custom stable baselines network? Can I pack the graph into a stable baselines observation space that somehow DGL or pytorch geometric could intake it?
Note: If anyone has a github link with any code that has done this please let me know, I have looked everywhere
You can serialize your DGL graph object using pickle and convert the resultant byte string into a vector of integers (with each char in the string corresponding to one int).
You can then apply the same operations in reverse to deserialize vector representation of the graph within your custom feature extractor.