albertvillanova HF staff commited on
Commit
9416763
1 Parent(s): c040ed0

Fix data URL to use HTTPS

Browse files
Files changed (1) hide show
  1. sentiment140.py +1 -1
sentiment140.py CHANGED
@@ -21,7 +21,7 @@ Sentiment140 consists of Twitter messages with emoticons, which are used as nois
21
  sentiment classification. For more detailed information please refer to the paper.
22
  """
23
  _URL = "http://help.sentiment140.com/home"
24
- _DATA_URL = "http://cs.stanford.edu/people/alecmgo/trainingandtestdata.zip"
25
 
26
  _TEST_FILE_NAME = "testdata.manual.2009.06.14.csv"
27
  _TRAIN_FILE_NAME = "training.1600000.processed.noemoticon.csv"
 
21
  sentiment classification. For more detailed information please refer to the paper.
22
  """
23
  _URL = "http://help.sentiment140.com/home"
24
+ _DATA_URL = "https://cs.stanford.edu/people/alecmgo/trainingandtestdata.zip"
25
 
26
  _TEST_FILE_NAME = "testdata.manual.2009.06.14.csv"
27
  _TRAIN_FILE_NAME = "training.1600000.processed.noemoticon.csv"