4 ms·
From the article: "Of course, you need a sufficiently large model to be able to learn from all this data, which is why GPT-3 is 175 billion parameters and prob
by terran57 4y ago
From the article:
"Of course, you need a sufficiently large model to be able to learn from all this data, which is why GPT-3 is 175 billion parameters and probably cost between $1m-10m in compute cost to train.[2]"
So, perhaps better title would be "GPT in 60 Lines of Numpy (and $1m-$10m)"
- zeknife 4y agoThere are GPT-2 checkpoints small enough to run on basically any modern computer
- pumanoir 4y agoI saw this [1] presentation where they use scheme to train GPT on a single consumer GPU. I've had no luck finding the 'scorch' compiler they mentioned in the video. 1. https://youtu.be/rDke29MbKQA?list=PLyrlk8Xaylp7NvZ1r-eTIUHdyHQg0auvo&t=3035 https://youtu.be/rDke29MbKQA?list=PLyrlk8Xaylp7NvZ1r-eTIUHdy...
- MuffinFlavored 4y agoWill one business model be for OpenAI to "license" out access to their trained model? How large is the model on disk(s) once it is trained?
- shagie 4y agoFrom various sources, the model itself is about 800 GB on disk.
- theptip 4y agoPerhaps I’m missing your point, but isn’t that what they do with their API right now? You pay for text completions, and can fine-tune their model with your data.
- veqq 4y agoBut you can't run the code on your own machine.
- mattnewton 4y agoOf course, if they leaked the model weight’s and a local inference binary for it they would lose the ability to charge for it. Clones with the weights would crop up all over the place.
- est 4y ago> But you can't run the code on your own machine. iirc GPT-3 itself alone is some 500TB in size. You need a really, really big machine to run LLMs, the first L means Large.
- hackernewds 4y agoThey must have time traveled to today in the past and read your comment, since this is precisely their business model!
- rvz 4y agoAnd it will be even more expensive to train it again on larger amounts of data and with a model with 10 times more parameters. Only Big Tech giants like Microsoft, Google, etc can afford to foot the bill and throw away millions into training LLMs, whilst we celebrate and hype about ChatGPT and LLMs getting bigger and significantly more expensive to train when they get confused, hallucinate over silly inputs and confidently generate bullshit. That can't be a good thing. OpenAI's ClosedAI model needs to be disrupted like how Stable Diffusion challenged DALLE-2 with an open source AI model.
- int_19h 4y agoStable Diffusion could do it because the task turned out to be amenable to reasonably small models. But there's no evidence of that being the case with GPT. That said, other organizations that can afford to foot the bill for it are the governments. This is hardly ideal, since such models will also come with plenty of strings attached - indeed, probably more than the private ones - but at least these policies are somewhat checked by democratic mechanisms. Long-term I think the demand for more AI compute power will lead to much more investment in GPU design and manufacture, driving the prices down. Since the underlying tech itself is well-understood, I fully expect to see the day when one can train and run a customized GPT-3 instance for one's private use, although the major players will likely be far ahead by then.
- Kranar 4y agoI disagree, I run a small tech company that has a group that's been experimenting with stable diffusion and we noticed that an extreme version of the Pareto Principle applies here as well where you can get ~90% of the benefits for like 5% of the cost, combined with the fact that computing power is continuously getting cheaper. Based on that groups success, they've recently proposed a mini project inspired by GPT that I am considering funding; the data its trained on is all publicly available for free, and most it comes from Common Crawl. I suspect that it will also yield similar results, where you can tailor your own version of GPT and get reasonably good models for a fraction of the price as well. We're no where close to the scale of Big Tech giants, but I've noticed for the better part of 15 years that small companies can actually derive a great deal of the benefits that larger companies have for a fraction of the cost if they play it smart and keep things tight.
- 99_00 4y agoAnyone know what the minimum cost for creating a model is and what the limitation would be?
- sharemywin 4y agothis is pretty small: https://github.com/karpathy/nanoGPT https://github.com/karpathy/nanoGPT
- deleted 4y ago[deleted]