I'm new to machine learning and I'm trying to create a machine learning classifier using python & Jupyter to match textual advertisements to websites that they will be displayed on. Is there any dataset that I could make use of?
You could get a lot of datas to train your NN e.g. on the U.S. government site
Or you load datasets
from sklearn
: e.g.:
from sklearn import datasets
(link to sklearn)