Prompt: code up an analog clock in html/js/css. make sure the clock is ticking exactly on the second change. second hand red. other hands black. all 12 hours marked with numbers. ChatGPT-4 Results: https://jsbin.com/giyurulajo/edit?html,css,js,output GPT2-Chatbot Results: https://jsbin.com/dacenalala/2/edit?html,css,js,output Claude3 Opus Results: https://jsbin.com/yifarinobo/edit?html,css,js,output None is correct.…
GPT-4.5 or GPT-5 being tested on LMSYS?
61–70 of 380 posts
Re: GPT-4.5 or GPT-5 being tested on LMSYS?
#62Earlier quoted context omitted.
Styling I understand but to tick the clock when time actually has changed you need to use animation frames APIs and check for clock change more often than "every 1000 ms" because setTimeout will eventually drift even if you start exactly on first second time change. This is a test for depth of knowledge of a programmer I used to use in the past in interviews.
This is platform-specific, right? Chromium corrects for drift ( https://source.chromium.org/chromium/chromium/src/+/main:thi... )
let lastms
function tick() {
if (lastms === undefined)
lastms = new Date().getMilliseconds()
else if (lastms !== new Date().getMilliseconds())
throw new Error('Drifted')
}
setInterval(tick, 1000)Re: GPT-4.5 or GPT-5 being tested on LMSYS?
#63Re: GPT-4.5 or GPT-5 being tested on LMSYS?
#64Prompt: code up an analog clock in html/js/css. make sure the clock is ticking exactly on the second change. second hand red. other hands black. all 12 hours marked with numbers. ChatGPT-4 Results: https://jsbin.com/giyurulajo/edit?html,css,js,output GPT2-Chatbot Results: https://jsbin.com/dacenalala/2/edit?html,css,js,output Claude3 Opus Results: https://jsbin.com/yifarinobo/edit?html,css,js,output None is correct.…
Re: GPT-4.5 or GPT-5 being tested on LMSYS?
#65Re: GPT-4.5 or GPT-5 being tested on LMSYS?
#66Re: GPT-4.5 or GPT-5 being tested on LMSYS?
#67Earlier quoted context omitted.
This is platform-specific, right? Chromium corrects for drift ( https://source.chromium.org/chromium/chromium/src/+/main:thi... )
I wish that was true but you can easily see it drifting in Chrome let lastms function tick() { if (lastms === undefined) lastms = new Date().getMilliseconds() else if (lastms !== new Date().getMilliseconds()) throw new Error('Drifted') } setInterval(tick, 1000)
Re: GPT-4.5 or GPT-5 being tested on LMSYS?
#68If you ask it about the model name/cutoff date it claims to be "ChatGPT, based on GPT-4" and that the cutoff date is "Nov 2023." It claims that consistently so I think it might be accurate.
Re: GPT-4.5 or GPT-5 being tested on LMSYS?
#69Earlier quoted context omitted.
There's a core problem with LLMs: they learn sentences, not facts. So an LLM may learn a ton of English-language sentences about cats, and much fewer Spanish sentences about gatos. And it even learns that cat-gato is a correct translation. But it does not ever figure out that cats and gatos are the same thing. And in particular, a true English-language fact about cats is still true if you translate it into Spanish. S…
> but in Spanish it might tell you "gatos tienen tres patas" Have you actually had a State of the art LLM do something like this? Because this >But it does not ever figure out that cats and gatos are the same thing. And in particular, a true English-language fact about cats is still true if you translate it into Spanish is just untrue. You can definitely query knowledge only learnt in one language in other languages.
> You can definitely query knowledge only learnt in one language in other languages.
Do you have a source on that? I believe this is simply not true, unless maybe the pretraining data has enough context-specific "bridge translations." And I am not sure how on earth you would verify that any major LLM only learnt something in one language. What if the pretraining data includes machine translations?
Frustratingly, just a few months ago I read a paper describing how LLMs excessively rely on English-language representations of ideas, but now I can't find it. So I can't really criticize you if you don't have a source :) The argument was essentially what I said above: since LLMs associate tokens by related tokens, not ideas by related ideas, the emergent conceptual relations formed around the token "cat" do not have any means of transferring to conceptual relations around the token "gato."
Re: GPT-4.5 or GPT-5 being tested on LMSYS?
#70Earlier quoted context omitted.
This is platform-specific, right? Chromium corrects for drift ( https://source.chromium.org/chromium/chromium/src/+/main:thi... )
I wish that was true but you can easily see it drifting in Chrome let lastms function tick() { if (lastms === undefined) lastms = new Date().getMilliseconds() else if (lastms !== new Date().getMilliseconds()) throw new Error('Drifted') } setInterval(tick, 1000)