We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
graph_db
The following example script should be used as a template for the "neo4j -> pytorch" method:
>>> from comptox_ai.db.graph_db import GraphDB >>> db = GraphDB() >>> db.create_graph_native_projection(name='example_graph', node_types=['ns0__Gene', 'ns0__StructuralEntity', 'ns0__Disease']) >>> db.to_pytorch(graph_name='example_graph')
The to_pytorch() method should return a torch_geometric.data.Dataset object, as described on this page: https://pytorch-geometric.readthedocs.io/en/latest/notes/create_dataset.html
to_pytorch()
torch_geometric.data.Dataset
The text was updated successfully, but these errors were encountered:
ricsuh
No branches or pull requests
The following example script should be used as a template for the "neo4j -> pytorch" method:
The
to_pytorch()
method should return atorch_geometric.data.Dataset
object, as described on this page: https://pytorch-geometric.readthedocs.io/en/latest/notes/create_dataset.htmlThe text was updated successfully, but these errors were encountered: