rdkit&gnn | Graph Neural Network Molecular Construction Graph Representation Source Code (ongoing)

Create graph structure

class MolGraph(object):

    def __init__(self):
        self.nodes = {
   
    
    }  # dict of lists of nodes, keyed by node type

    def new_node(

Guess you like

Origin blog.csdn.net/weixin_43236007/article/details/110970206