Machine Learning in Elixir - Wine datasets wont download (page 128)

@seanmor5

I don’t know if there’s much you can do about it, but the SSL certificate for the Wine dataset from archive.ics.uci.edu has an issue and so Scidata.Wine.download (on page 128) fails with a bad certificate error. Maybe need to contact the host (or wait it out)… or switch to a different dataset?

FYI: I raised an issue on the Scidata repository as well so they know about it - Iris and Wine dataset download fails with Bad Certificate · Issue #39 · elixir-nx/scidata · GitHub

2 Likes

Thanks for pointing this out and raising the issue on Scidata! I’ll see if there’s a workaround

To get around this problem, you can specify the base_url option and use the http endpoint to download the dataset: {inputs, targets} = Scidata.Wine.download(base_url: "http://archive.ics.uci.edu/static/public/109/wine.zip")

1 Like

I believe this should have been fixed in SciData upstream. Let me know if you still have issues!

1 Like