This commit is contained in:
Adam Yoblick 2022-03-23 14:23:43 -05:00
Родитель 21fbff2f63
Коммит 2daed98d80
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -18,7 +18,7 @@ correct.
============
Example Data
============
The example is from http://mlr.cs.umass.edu/ml/datasets/Spambase
The example is from https://archive-beta.ics.uci.edu/ml/datasets/spambase
It contains pre-processed metrics, such as the frequency of certain
words and letters, from a collection of emails. A classification for
each one indicating 'spam' or 'not spam' is in the final column.
@ -30,7 +30,7 @@ detection systems.
'''
# Remember to update the script for the new data when you change this URL
URL = "http://mlr.cs.umass.edu/ml/machine-learning-databases/spambase/spambase.data"
URL = "https://archive.ics.uci.edu/ml/machine-learning-databases/spambase/spambase.data"
# Uncomment this call when using matplotlib to generate images
# rather than displaying interactive UI.