Earlier quoted context omitted.
It's a language model. It assigns probabilities to tokens in a sequence. You give it a number of options and it responds with the one that it assigns the highest probability to. If there's nothing in the options you give it that makes sense in the context of your test phrase, then it will return something that doesn't make sense. If some of your options make sense, it might return something that makes sense, or not.…
It would be nice if it looked at the values of the probabilities and said "I don't understand the question" if the numbers are too low. Or for fun, it could point out how stupid the question was.
T0* – Series of encoder-decoder models trained on a large set of different tasks
141–150 of 163 posts
Re: T0* – Series of encoder-decoder models trained on a large set of different tasks
#142This is fantastic progress, great to see 16x smaller = 41.5GB though More research needs to be undertaken in model compression imo
I am curious why authors preferred T5?..
Re: T0* – Series of encoder-decoder models trained on a large set of different tasks
#143Earlier quoted context omitted.
don't you pretrain on very silar tasks explicitely
We discuss this a bit in Section D.2 (HOW UNSEEN ARE THE HELD-OUT TASKS?). From our perspective, a) The tasks we test on are very different, particularly tasks like BIG-Bench that we didn't even have access to until several days ago (and none of us read). b) GPT-3 directly sees similar versions of tasks like question answering or story completion just in its training mixture, so the baseline for "unseen" is a bit com…
Re: T0* – Series of encoder-decoder models trained on a large set of different tasks
#144The reaction in this thread is really interesting, in comparison between this and open-ai’s announcements. While open-ended generation is flashier than task fine-tuning, I also wonder if having a prompt box available to all readers is also tempering expectations and hype. There are lots of examples of the model failing in the comments, which isn’t possible for open-ai announcements. Having spent a ton of time with GP…
Great observation. Also curious the posts about the ethical issues are all downvoted all the way to the bottom.
Re: T0* – Series of encoder-decoder models trained on a large set of different tasks
#145The hosted demo has the default query, "How many hydrogen atoms are in a water molecule?" It said "two". I asked it, "How many oxygen atoms are in a water molecule?". It said "two".
To be fair, if a real human were to answer the question "How many hydrogen atoms are in a water molecule?" time and time again, it would be very easy for them to accidentally reply "two" when asked the same question about oxygen. The real question is, after the model mistakenly replied "two" to your question, did it also internally trigger the neurons for "Wait a minute..." while inhibiting output?
> two hydrogen atoms
water molecule?
> isotopes of hydrogen
How water molecule?
> is arranged in a tetrahedral structure
Re: T0* – Series of encoder-decoder models trained on a large set of different tasks
#146Re: T0* – Series of encoder-decoder models trained on a large set of different tasks
#147Forget skynet ... >what is the most recent trend? the use of a sexy thong >what is the future of the people? the people will be able to live in peace >are cryptocoins dangerous? no >why cryptocoins are not dangerous? they are not backed by the government >governments are dangerous? a threat to the stability of the country >why governments are dangerous? if they are not able to control their own people, they will be u…
>which emperor is able to control the world? Emperor Gaozu ... -_-
Re: T0* – Series of encoder-decoder models trained on a large set of different tasks
#148The hosted demo has the default query, "How many hydrogen atoms are in a water molecule?" It said "two". I asked it, "How many oxygen atoms are in a water molecule?". It said "two".
Re: T0* – Series of encoder-decoder models trained on a large set of different tasks
#149The hosted demo has the default query, "How many hydrogen atoms are in a water molecule?" It said "two". I asked it, "How many oxygen atoms are in a water molecule?". It said "two".
A: "Chuck Norris"
Re: T0* – Series of encoder-decoder models trained on a large set of different tasks
#150Earlier quoted context omitted.
Running the model multiple times doesn't reinforce the model. In general, you should not anthropomorphize algorithms as human cognition does not give any bearing on how algorithms work.
It can. Check out "zero shot learning" -> both sentences would be part of a single "evaluation", and the first sentence would prime for the output of the second. (You basically combine multiple "evaluations" into one, and context is held in tensors / blobs) https://towardsdatascience.com/zero-and-few-shot-learning-c0...