Just like various chat bot incarnations, it's reasonably OK at generating generic sentences without real understanding. I tried several attempts with this leading fragment: "Is borrow checking unique to Rust? Probably not. But". The results are not pretty (the best one is as follows). Not impressed at all with this giant model :| "Is borrow checking unique to Rust? Probably not. But the Rust library is written by and…
Love the fake link to github... Which model was this? Was it trained on software type discussion?
OpenAI Releases Largest GPT-2 Text Generation Model
141–150 of 166 posts
Re: OpenAI Releases Largest GPT-2 Text Generation Model
#142Just like various chat bot incarnations, it's reasonably OK at generating generic sentences without real understanding. I tried several attempts with this leading fragment: "Is borrow checking unique to Rust? Probably not. But". The results are not pretty (the best one is as follows). Not impressed at all with this giant model :| "Is borrow checking unique to Rust? Probably not. But the Rust library is written by and…
See for example https://www.aclweb.org/anthology/D19-1250.pdf (released today) which shows that the BERT language model performs extremely competitively with specialised knowledge bases and LB construction methods.
Re: OpenAI Releases Largest GPT-2 Text Generation Model
#143You can try it at: http://textsynth.org
Text completion using the GPT-2 language model. It is a neural network of 1.5 billion parameters. Type a text and let the neural network complete it. Each try returns a different randomly chosen completion. The system is still far from being perfect. I need to add a bit of support for parsing and formatting of HTML, CSS, and JSON.
If anyone has ideas on what could go in the UI, I am open to suggestions.
Usage:
Run a text with the command:
$ python train-pct2.py \ [text] \ [options] \ [data]
and wait a while for results to appear. You can use the --progress ( -- ) flag to tell the training of the system to continue, or use the --stop ( -- ) flag to stop training. If you run with no options, the system will continue on its current task.
Options:
--input text is the text to be trained --output text is the path to the text as output --progress will print a summary of the progress of the system every 15 seconds --stop will stop training the system and print a summary of
Re: OpenAI Releases Largest GPT-2 Text Generation Model
#144We (Hugging Face) added it to Write With Transformers if you want to try the text generation capabilities of the model: https://transformer.huggingface.co/doc/gpt2-xl
Re: OpenAI Releases Largest GPT-2 Text Generation Model
#145Wow, some samples are frighteningly good. I was impressed by previous models and I don't know if I'm just lucky this time, but... wow. Can anybody who is not into climbing even tell this is all fake? Jain Kim is an experienced climber. In 2006, she became the first woman from Korea to climb all five 8,000 meters (24,064 ft) peaks in the Swiss alpine ski run Alps in 24 hours. In 2009, she made history again by setting…
> Can anybody who is not into climbing even tell this is all fake? Yes, quite clearly from the following: > She made the first ascent of 8,832-meter K2 in China, the second highest mountain in the world, in 2009 and the third highest mountain in Europe. Firstly, this sentence scans poorly. I'm guessing it should be: > In 2009, she made the first ascent of 8,832-meter K2 in China, the second highest mountain in the wo…
Re: OpenAI Releases Largest GPT-2 Text Generation Model
#146Earlier quoted context omitted.
I'd say generating an entire coherent essay like this would constitute a solid pass of the Turing test. I don't think we're that close to that yet (or alternately the singularity is right around the corner, because you could feed that same bot a corpus of AI papers and have it write new publishable ones.)
But it should be possible to separately train a neural network on basic knowledge, so it can generate a stream of ideas. Then use GPT-2 to generate a sentence or paragraph, following those guidelines. Just like we humans: we first think of what we want to say (a few points about X, first Y, don't forget Z). Then turn those rough ideas into fully-formed sentences.
Re: OpenAI Releases Largest GPT-2 Text Generation Model
#147Earlier quoted context omitted.
Cool this is awesome ! I’m going to try to retrain this with a twitter dataset called sentiment140 ( I have already processed it with gpt2 345M).
Is your fine-tuned model available somewhere?
Re: OpenAI Releases Largest GPT-2 Text Generation Model
#148Earlier quoted context omitted.
Am I the only one impressed by the text generated? Sure, it doesn't have any understanding but are you factoring that 1. most people on the world do not know that Rust is a programming language and 2. a single person can not have that much general knowledge. Sure they can know about Rust borrow checker but will not be able to expand that much on another subject.
This looks like it can copy large chunks of text. That's it. It is hard task in itself ("copy" is a standard test for memory-enhanced neural systems like RNN and such) but here it needs to "understand" things. For example, what makes borrow checker in Rust unique which would be valid continuation.
Re: OpenAI Releases Largest GPT-2 Text Generation Model
#149Surely we are not far off models capable of submission-quality essays that will enable a new generation of cheating.