"For heterogeneous graph, we need to save different edge edges(namely node pairs) into separate **CSV** files.\n",
"For heterogeneous graph, we need to save different edge edges(namely node pairs) into separate **Numpy** or **CSV** files.\n",
"\n",
"\n",
"**Note**:\n",
"Note:\n",
"when saving to file, do not save index and header.\n"
"- when saving to **Numpy**, the array requires to be in shape of `(2, N)`. This format is recommended as constructing graph from it is much faster than **CSV** file.\n",
"- when saving to **CSV** file, do not save index and header.\n"
"For homogeneous graph, we just need to save edges(namely node pairs) into **CSV** file.\n",
"For homogeneous graph, we just need to save edges(namely node pairs) into **Numpy** or **CSV** file.\n",
"\n",
"\n",
"Note:\n",
"Note:\n",
"when saving to file, do not save index and header.\n"
"- when saving to **Numpy**, the array requires to be in shape of `(2, N)`. This format is recommended as constructing graph from it is much faster than **CSV** file.\n",
"- when saving to **CSV** file, do not save index and header.\n"