It looks like the wrong AI for the problem. RL should be more successful.
Show HN: GPT crushes my high score in 2048.io
31–40 of 40 posts
Re: Show HN: GPT crushes my high score in 2048.io
#32Earlier quoted context omitted.
2048 spawns new numbers randomly on the board. A human player uses that information to determine the best move.
Besides that you need to predict where the next number can and should spawn. If you don't figure out the strategy for that you will never get a decent score.
Re: Show HN: GPT crushes my high score in 2048.io
#33Earlier quoted context omitted.
There shouldn't need to be any board history, just like you don't need to know the board history to know the next move in checkers.
2048 spawns new numbers randomly on the board. A human player uses that information to determine the best move.
Re: Show HN: GPT crushes my high score in 2048.io
#34This is a pretty interesting example, as I think most of you will find that after playing 2048 for a bit, you discover a way to beat the game every time. I'm not sure I could code it up, but the heuristic is basically to keep the big numbers squashed against the same edge (eg the top) the whole game while using left-right-up movements to squash the smaller numbers into each other as opportunities arise. I don't think…
That's - at the moment, AFAIU - a limitation of the tokenizers used to interface with LLMs. Basically, the model "calculates" bullshit because the input layer doesn't get correct inputs from the tokenizer.
Re: Show HN: GPT crushes my high score in 2048.io
#35I also modified the original game code to allow a board of different sizes. The modifications are just a minor fix to the CSS, an input field for board size, an the corresponding JS for that input field.
Re: Show HN: GPT crushes my high score in 2048.io
#36GPT4 just told me that a billion golf balls take up 40 billion cc, and since packing efficiency of spheres is as high as 74%, they take up 26 billion cc. No, you have to divide by 0.74, not multiply. In shit that GPT4 is not trained on (like code code code and more code), it can get really goofy. Earlier in the same chat about golf balls, it claimed that if brain cells were the size of golf balls (an imaginary thread…
Yet according to many HNers we're scarce months from AGI that can replace programmers or synthesise 6-season TV series. :)
AI is rapidly approaching a quality level near to "good enough with a bit of human cleanup afterwards".
Re: Show HN: GPT crushes my high score in 2048.io
#37Earlier quoted context omitted.
Yet according to many HNers we're scarce months from AGI that can replace programmers or synthesise 6-season TV series. :)
Given that a lot of what programmers do is write CRUD-style apps and a lot of TV shows and movies - particularly the big IPs - follow one and the same formula... it's not like that argument has some merit. AI is rapidly approaching a quality level near to "good enough with a bit of human cleanup afterwards".
Re: Show HN: GPT crushes my high score in 2048.io
#38Earlier quoted context omitted.
Yet according to many HNers we're scarce months from AGI that can replace programmers or synthesise 6-season TV series. :)
Given that a lot of what programmers do is write CRUD-style apps and a lot of TV shows and movies - particularly the big IPs - follow one and the same formula... it's not like that argument has some merit. AI is rapidly approaching a quality level near to "good enough with a bit of human cleanup afterwards".
For average episodic TV show, yeah. Just pull things from hat and fill the holes, later that could be done by pretty cheap writers already.
Re: Show HN: GPT crushes my high score in 2048.io
#39GPT4 just told me that a billion golf balls take up 40 billion cc, and since packing efficiency of spheres is as high as 74%, they take up 26 billion cc. No, you have to divide by 0.74, not multiply. In shit that GPT4 is not trained on (like code code code and more code), it can get really goofy. Earlier in the same chat about golf balls, it claimed that if brain cells were the size of golf balls (an imaginary thread…
Re: Show HN: GPT crushes my high score in 2048.io
#40This is a pretty interesting example, as I think most of you will find that after playing 2048 for a bit, you discover a way to beat the game every time. I'm not sure I could code it up, but the heuristic is basically to keep the big numbers squashed against the same edge (eg the top) the whole game while using left-right-up movements to squash the smaller numbers into each other as opportunities arise. I don't think…