this post was submitted on 12 Jun 2024
701 points (97.9% liked)

Programmer Humor

32175 readers
526 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 5 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 19 points 3 months ago (1 children)

Can't find the exact source–I'm on mobile right now–but the code for the gpt-2 encoder uses a utf-8 to unicode look up table to shrink the vocab size. https://github.com/openai/gpt-2/blob/master/src/encoder.py

[–] [email protected] 3 points 3 months ago (1 children)

Seriously? Python for massive amounts of data? It's a nice scripting language, but it's excruciatingly slow

[–] [email protected] 6 points 3 months ago

There are bindings in java and c++, but python is the industry standard for AI. The libraries for machine learning are actually written in c++, but use python language bindings. Python doesn't tend to slow things down since machine learning is gpu-bound anyway. There are also library specific programming languages which urges the user to make pythonic code that can be compiled into c++.