File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
neural_structured_learning/examples/preprocess/cora Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 221221 },
222222 "outputs" : [],
223223 "source" : [
224- " !wget --quiet -P /tmp https://linqs-data.soe.ucsc.edu/public/cora /cora.tar.gz \n " ,
225- " !tar -C /tmp -xvzf /tmp/cora.tar.gz "
224+ " !wget --quiet -P /tmp https://linqs-data.soe.ucsc.edu/public/lbc /cora.tgz \n " ,
225+ " !tar -C /tmp -xvzf /tmp/cora.tgz "
226226 ]
227227 },
228228 {
Original file line number Diff line number Diff line change 1414# limitations under the License.
1515
1616# URL for downloading Cora dataset.
17- URL=https://linqs-data.soe.ucsc.edu/public/cora /cora.tar.gz
17+ URL=https://linqs-data.soe.ucsc.edu/public/lbc /cora.tgz
1818
1919# Target folder to store and process data.
2020DATA_DIR=/tmp
@@ -34,7 +34,7 @@ function download () {
3434
3535# Download and unzip the dataset. Data will be at '${DATA_DIR}/cora/' folder.
3636download ${URL} ${DATA_DIR}
37- tar -C ${DATA_DIR} -xvzf ${DATA_DIR} /cora.tar.gz
37+ tar -C ${DATA_DIR} -xvzf ${DATA_DIR} /cora.tgz
3838
3939# Pre-process cora dataset. The file 'preprocess_cora_dataset.py' is assumed to
4040# be located in the current directory.
Original file line number Diff line number Diff line change 1414r"""Tool that preprocesses Cora data for Graph Keras trainers.
1515
1616The Cora dataset can be downloaded from:
17- https://linqs-data.soe.ucsc.edu/public/cora /cora.tar.gz
17+ https://linqs-data.soe.ucsc.edu/public/lbc /cora.tgz
1818
1919In particular, this tool does the following:
2020(a) Converts Cora data (cora.content) into TF Examples,
You can’t perform that action at this time.
0 commit comments