The number of edges in datasets “Cora”, “CiteSeer” and “PubMed” is inconsistent with the paper description #6203
-
The number of datasets “Cora”, “CiteSeer” and “PubMed” edges is inconsistent with the paper description |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
I checked the description of the database for other papers,the Cora dataset has 5429 edges,Why is the number of sides different in Planetoid? |
Beta Was this translation helpful? Give feedback.
-
Taking Cora as an example, there are edges that are inherently undirected, e.g., (1,2) and (2, 1) both exist in the dataset. PyG will remove duplicate edges from a graph when converting it to an undirected one, so the number of edges will be less than 5429 * 2. |
Beta Was this translation helpful? Give feedback.
Taking Cora as an example, there are edges that are inherently undirected, e.g., (1,2) and (2, 1) both exist in the dataset. PyG will remove duplicate edges from a graph when converting it to an undirected one, so the number of edges will be less than 5429 * 2.