Graph description

Contains

A description of graph structure in the edge list format.

Graph information is used to calculate the graph aggregated features.

Note

Only one thing can be passed, either a graph or pairs description.

Can be used only when dataset description contains the GroupId column.

If graph was used for model training, graph information will be also required for all action on model with dataset (applying, fstr calculation and so on).

Specification

  • List each edge description on a new line.
  • Use a tab as the delimiter to separate the columns on a line.

Row format

<start_vertex index><\t><end_vertex index>
  • start_vertex indexis the zero-based index of the start_vertex object from the graph.
  • end_vertex indexis the zero-based index of the loser object from the graph.

Example

2<\t>1
2<\t>0
7<\t>6
Previous