We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
preprocess_ondisk_dataset
1 parent fe8a8fc commit 4ceb0bfCopy full SHA for 4ceb0bf
python/dgl/graphbolt/impl/ondisk_dataset.py
@@ -120,13 +120,13 @@ def preprocess_ondisk_dataset(input_config_path: str) -> str:
120
# 5. Save the CSCSamplingGraph and modify the output_config.
121
output_config["graph_topology"] = {}
122
output_config["graph_topology"]["type"] = "CSCSamplingGraph"
123
- output_config["graph_topology"]["path"] = (
+ output_config["graph_topology"]["path"] = str(
124
processed_dir_prefix / "csc_sampling_graph.tar"
125
)
126
127
save_csc_sampling_graph(
128
csc_sampling_graph,
129
- dataset_path / output_config["graph_topology"]["path"],
+ str(dataset_path / output_config["graph_topology"]["path"]),
130
131
del output_config["graph"]
132
0 commit comments