karpathy / nn-zero-to-hero

Neural Networks: Zero to Hero
MIT License
10.9k stars 1.33k forks source link

Shouldn't names.txt be added to this repo? #16

Open delbarital opened 1 year ago

delbarital commented 1 year ago

I was looking for it and found it here https://github.com/karpathy/makemore/blob/master/names.txt

under the makemore repo, but it is referenced from the nn-zero-to-hero repo, so I would expect to see it here as well.

ksa-real commented 1 year ago

Another option is just to load the file directly in the collab notebook:

import urllib
words = urllib.request.urlopen(
    'https://raw.githubusercontent.com/karpathy/makemore/master/names.txt'
    ).read().decode('utf-8').splitlines()