Skip to content

Latest commit

 

History

History
56 lines (30 loc) · 2.25 KB

File metadata and controls

56 lines (30 loc) · 2.25 KB
graph LR
    GraphData["GraphData"]
    NodeFeatView["NodeFeatView"]
    EdgeFeatView["EdgeFeatView"]
    NodeAttrView["NodeAttrView"]
    GraphData -- "has" --> NodeFeatView
    GraphData -- "has" --> EdgeFeatView
    GraphData -- "has" --> NodeAttrView
Loading

CodeBoardingDemoContact

Details

Updated analysis of graph4nlp/pytorch/data components with source code references.

GraphData

Represents a graph data structure, encapsulating nodes, edges, and their features. It serves as the fundamental data container within the graph4nlp framework.

Related Classes/Methods:

NodeFeatView

Provides a view for accessing and manipulating node features within a GraphData object.

Related Classes/Methods:

EdgeFeatView

Provides a view for accessing and manipulating edge features within a GraphData object.

Related Classes/Methods:

NodeAttrView

Provides a view for accessing and manipulating node attributes within a GraphData object.

Related Classes/Methods: