Skip to content

Commit

Permalink
new: address comments
Browse files Browse the repository at this point in the history
  • Loading branch information
aMahanna committed Oct 19, 2022
1 parent 582da57 commit a40896b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 15 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,7 @@ dgl_g = adbdgl_adapter.arangodb_graph_to_dgl("FakeHetero")
dgl_g = adbdgl_adapter.arangodb_collections_to_dgl("FakeHetero", v_cols={"user", "game"}, e_cols={"plays"})

# 2.3: ArangoDB to DGL via Metagraph v1 (transfer attributes "as is", meaning they are already formatted to DGL data standards)
# Learn more about the DGL Data Standards here: https://docs.dgl.ai/guide/graph.html#guide-graph
metagraph_v1 = {
"vertexCollections": {
# Move the "features" & "label" ArangoDB attributes to DGL as "features" & "label" Tensors
Expand Down
15 changes: 0 additions & 15 deletions adbdgl_adapter/abc.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,21 +46,6 @@ def ntypes_to_ocollections(
) -> List[str]:
raise NotImplementedError # pragma: no cover

# def __prepare_dgl_features(self) -> None:
# raise NotImplementedError # pragma: no cover

# def __insert_dgl_features(self) -> None:
# raise NotImplementedError # pragma: no cover

# def __prepare_adb_attributes(self) -> None:
# raise NotImplementedError # pragma: no cover

# def __fetch_adb_docs(self) -> None:
# raise NotImplementedError # pragma: no cover

# def __insert_adb_docs(self) -> None:
# raise NotImplementedError # pragma: no cover

def __fetch_adb_docs(self) -> None:
raise NotImplementedError # pragma: no cover

Expand Down

0 comments on commit a40896b

Please sign in to comment.