From 5f27a0ce93c98cc423f7e325620b62a6d727729c Mon Sep 17 00:00:00 2001 From: Victor An <2378740+duoan@users.noreply.github.com> Date: Wed, 22 Jan 2025 22:39:01 -0800 Subject: [PATCH] fix sentiment140 download url 404 error The original URL already enabled https. https://cs.stanford.edu/people/alecmgo/trainingandtestdata.zip --- .../datasets/sentiment140/sentiment140_dataset_builder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tensorflow_datasets/datasets/sentiment140/sentiment140_dataset_builder.py b/tensorflow_datasets/datasets/sentiment140/sentiment140_dataset_builder.py index 7e98606247e..efa35ebe194 100644 --- a/tensorflow_datasets/datasets/sentiment140/sentiment140_dataset_builder.py +++ b/tensorflow_datasets/datasets/sentiment140/sentiment140_dataset_builder.py @@ -25,7 +25,7 @@ from tensorflow_datasets.core.utils.lazy_imports_utils import tensorflow as tf import tensorflow_datasets.public_api as tfds -_DOWNLOAD_URL = "http://cs.stanford.edu/people/alecmgo/trainingandtestdata.zip" +_DOWNLOAD_URL = "https://cs.stanford.edu/people/alecmgo/trainingandtestdata.zip" _HOMEPAGE_URL = "http://help.sentiment140.com/home"