hugegraph-ml/src/hugegraph_ml/utils/dgl2hugegraph_utils.py [440:452]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    else:
        raise ValueError("dataset not supported")
    graph_dgl = dataset_dgl[0]

    client: PyHugeClient = PyHugeClient(
        ip=ip, port=port, graph=graph, user=user, pwd=pwd, graphspace=graphspace
    )
    client_schema: SchemaManager = client.schema()
    client_graph: GraphManager = client.graph()
    # create property schema
    client_schema.propertyKey(
        "feat"
    ).asDouble().valueList().ifNotExist().create()  # node features
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



hugegraph-ml/src/hugegraph_ml/utils/dgl2hugegraph_utils.py [531:543]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    else:
        raise ValueError("dataset not supported")
    graph_dgl = dataset_dgl[0]

    client: PyHugeClient = PyHugeClient(
        ip=ip, port=port, graph=graph, user=user, pwd=pwd, graphspace=graphspace
    )
    client_schema: SchemaManager = client.schema()
    client_graph: GraphManager = client.graph()
    # create property schema
    client_schema.propertyKey(
        "feat"
    ).asDouble().valueList().ifNotExist().create()  # node features
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



