Skip to content

Commit f0bdc32

Browse files
arjungtensorflow-copybara
authored andcommitted
Add '--no-check-certificate' option to wget when downloading the Cora data set.
The SSL certificate for "https://linqs-data.soe.ucsc.edu/public/lbc/cora.tgz" has expired recently. PiperOrigin-RevId: 314151979
1 parent 72158c1 commit f0bdc32

File tree

1 file changed

+1
-1
lines changed
  • neural_structured_learning/examples/preprocess/cora

1 file changed

+1
-1
lines changed

neural_structured_learning/examples/preprocess/cora/prep_data.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ function download () {
2626
filename=${fileurl##*/}
2727
if [ ! -f ${filename} ]; then
2828
echo ">>> Downloading '${filename}' from '${fileurl}' to '${filedir}'"
29-
wget --quiet -P ${filedir} ${fileurl}
29+
wget --quiet --no-check-certificate -P ${filedir} ${fileurl}
3030
else
3131
echo "*** File '${filename}' exists; no need to download it."
3232
fi

0 commit comments

Comments
 (0)