hugegraph-ml/src/hugegraph_ml/utils/dgl2hugegraph_utils.py [508:517]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            vertex_label,
            vertex_label,
            properties,
        ]
        edatas.append(edata)
        if len(edatas) == MAX_BATCH_NUM:
            _add_batch_edges(client_graph, edatas)
            edatas.clear()
    if len(edatas) > 0:
        _add_batch_edges(client_graph, edatas)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



hugegraph-ml/src/hugegraph_ml/utils/dgl2hugegraph_utils.py [916:925]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                vertex_label,
                vertex_label,
                properties,
            ]
            edatas.append(edata)
            if len(edatas) == MAX_BATCH_NUM:
                _add_batch_edges(client_graph, edatas)
                edatas.clear()
    if len(edatas) > 0:
        _add_batch_edges(client_graph, edatas)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



