Resolves YES if good evidence is provided that gpt2-chatbot is based on the GPT-2 architecture/a modification of GPT-2/whatever . e.g. a statement from OpenAI
Resolves NO if no such evidence is provided prior to June 2025.
@jim I personally am OK with a NO resolution, but there are many other YES holders, I think they might be not OK with it.
@RemNi like similar in size to gpt-2, with many new tricks. Possibly also with RAG into a very large dataset of text (maybe containing lots of synthetic examples produced by gpt-4?). And then perhaps some tree of sequence search on top?
@RemNi I saw an opinion that it can't be search because search is incompatible with streaming, but incremental search with limited depth would probably still work with streaming.
@Bair yeah that's what I thought also when using it in lmsys. I think it's possible that if it's doing search then it might still be outputting tokens to the stream at a constant rate. Like it's an output buffer that lags behind the search lookahead
@Bair when a token is pushed to the stream, the search process prunes the parts of the tree that don't contain that token, something like that