Skip to content

Commit 3ab7b0b

Browse files
arjungtensorflow-copybara
authored andcommitted
Automated rollback of commit e5d340e
PiperOrigin-RevId: 319071903
1 parent fe3f71d commit 3ab7b0b

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

g3doc/tutorials/graph_keras_mlp_cora.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -221,8 +221,8 @@
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
{

neural_structured_learning/examples/preprocess/cora/prep_data.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
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.
2020
DATA_DIR=/tmp
@@ -34,7 +34,7 @@ function download () {
3434

3535
# Download and unzip the dataset. Data will be at '${DATA_DIR}/cora/' folder.
3636
download ${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.

neural_structured_learning/examples/preprocess/cora/preprocess_cora_dataset.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
r"""Tool that preprocesses Cora data for Graph Keras trainers.
1515
1616
The 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
1919
In particular, this tool does the following:
2020
(a) Converts Cora data (cora.content) into TF Examples,

0 commit comments

Comments
 (0)