Teaching GPT-3 to reverse words
twitter.com
Teaching GPT-3 to reverse words
1–10 of 81 posts
Re: Teaching GPT-3 to reverse words
#2I didn’t know that. Seems like it would confuse it during training. Anyone able to explain?
Re: Teaching GPT-3 to reverse words
#3> Tokens are chunks of characters. For example, the word “alphabet” gets broken up into the tokens “alph" and "abet”. I didn’t know that. Seems like it would confuse it during training. Anyone able to explain?
Re: Teaching GPT-3 to reverse words
#4I'd be curious to see what scaling up the size of the vocabulary would do to improve these results in a model like GPT-3...
Re: Teaching GPT-3 to reverse words
#5> Tokens are chunks of characters. For example, the word “alphabet” gets broken up into the tokens “alph" and "abet”. I didn’t know that. Seems like it would confuse it during training. Anyone able to explain?
Re: Teaching GPT-3 to reverse words
#6Re: Teaching GPT-3 to reverse words
#7> Tokens are chunks of characters. For example, the word “alphabet” gets broken up into the tokens “alph" and "abet”. I didn’t know that. Seems like it would confuse it during training. Anyone able to explain?
I believe GPT-3 uses byte pair encoding, which allows it to do tokenization in a language-neutral manner: https://en.wikipedia.org/wiki/Byte_pair_encoding
Re: Teaching GPT-3 to reverse words
#8Part of the problem here is that GPT-3 has such a small vocabulary. It's 50K tokens, and many of those are either garbage, punctuation, or full words (rather than sub words). I'd be curious to see what scaling up the size of the vocabulary would do to improve these results in a model like GPT-3...
A rare word like blithe is tokenized into two BPE tokens: bl and ithe, whereas common words like the get their own token.
Re: Teaching GPT-3 to reverse words
#9It's funny to me that this kind of usage of GPT is just programming with a lot of extra steps.
Re: Teaching GPT-3 to reverse words
#10> Tokens are chunks of characters. For example, the word “alphabet” gets broken up into the tokens “alph" and "abet”. I didn’t know that. Seems like it would confuse it during training. Anyone able to explain?
Not sure if the same thing happens here, tho