Are we heading to the (distant) future where to make progress in any field you have to spend big $$$ to train a model?
We are already there. Machine learning is the flavor of A.I. that keeps business barriers of entry high. If we had invested in symbolic A.I., things would be different. A similar thing happens with programming language flavors. PHP lowers barriers of entry so it is discredited by the incumbents.
GPT-3 is no longer the only game in town
91–100 of 217 posts
Re: GPT-3 is no longer the only game in town
#92Are we heading to the (distant) future where to make progress in any field you have to spend big $$$ to train a model?
Re: GPT-3 is no longer the only game in town
#93You can use reduced versions of language models with extremely good results.
I was involved in training the first-ever GPT2 for Bengali language, but with 117 million parameters.
It took a month's effort (training + writing code + setup) and about $6k in TPU cost, but Google Cloud covered it.
Anyway, it is surprisingly good. We fine-tuned the model for several downstream tasks and we were shocked when we saw the quality of generated text.
I fine-tuned this model to write Bengali poems with a dataset of just about 2k poems and ran the training for 20 minutes in GPU instance of Colab Pro.
I was really blown away by the quality.
The main training was done in JAX, and it is much faster and seamless than PyTorch XLA, much better than TensorFlow in every way.
So, my point is, although everyone is talking hundreds of billions of parameters and millions in training cost, you can still derive practical value from language models, and that too, at a low cost.
Re: GPT-3 is no longer the only game in town
#94Get it, cause it's a generative transformer? Hah
Re: GPT-3 is no longer the only game in town
#95Earlier quoted context omitted.
OpenAI takes the Orwellian cake.
I hear a lot of low effort takes about OpenAI but how exactly is providing your service via a paid API the "Orwellian cake"? Is this really the most (or even at all) Orwellian practice for you?
If their name was ProfitableAI, there'd probably be fewer complaints.
Re: GPT-3 is no longer the only game in town
#96Re: GPT-3 is no longer the only game in town
#97Can anyone tell me what the value of GPT-3 actually is other than generating meaningless prose? What would a business use it for
You can try it yourself - apply for a free API license from OpenAI. If you like to use Common Lisp or Clojure then I have examples in two of my books (you can download for free by setting the price to zero): https://leanpub.com/u/markwatson
Re: GPT-3 is no longer the only game in town
#98>However, the ability of people to build upon GPT-3 was hampered by one major factor: it was not publicly released. Instead, OpenAI opted to commercialize it and only provide access to it via a paid API. This made sense given OpenAI’s for profit nature, but went against the common practice of AI researchers releasing AI models for others to build upon. So, since last year multiple organizations have worked towards cr…
Re: GPT-3 is no longer the only game in town
#99Earlier quoted context omitted.
The fact that GPT3 works at all for coding indicates that our programming languages are too low level and force a lot of redundancy (low entropy). From a programmer productivity optimization perspective it should be impossible to reliably predict the next statement. Of course there might be trade offs. Some of that redundancy might be helping maintenance programmers to understand the code.
That would only follow if we were trying to optimize code for brevity, and I have no clue why that would be your top priority.