5 Matching Annotations
- Jun 2023
-
docdrop.org docdrop.org
-
the code of G of of a transformer the T in in a 00:25:17 GPT is 2000 lines long it's not very complex it's actually not a very intelligent machine it's simply predicting the next word
- interesting fact
- ChatGPT is only written with 2,000 lines of code
- It's not very intelligent, but a very large external memory
- and repeats the best of what humans have said
- interesting fact
Tags
Annotators
URL
-
- Jul 2022
-
www.vpri.org www.vpri.org
-
This opens the possibility of doing a design much better than Squeak's, both fundamentally and at the user-level, to create a model of an entire personal computer system that is extremely compact (under 20,000 lines of code)
See: Oberon
-
the Squeak system, which was derived from PARC Smalltalk, includes its own operating system, GUI, development tools, graphics, sound, Internet sockets, and many applications including Etoys and Croquet, yet is only about 230,000 lines of code. The executables are about 2.8MB and only half of this code is generally used.
-
- Mar 2022
-
news.ycombinator.com news.ycombinator.com
-
tlrobinson interpreted right that codebase size should be measured in number of tokens
Bob Nystrom is fond of avoiding LOC measurements in favor of number of semicolons.
-
- Oct 2020
-
github.com github.com
-
Replaced nested `require` statements with `import` declarations for the sake of a leaner bundle. This entails adding empty imports to three files to guarantee correct ordering – see https://github.com/styled-components/styled-components/pull/100
-