HackerTrans
トップ新着トレンドコメント過去質問紹介求人

ykhli

no profile record

投稿

The Next Frontier of Visual AI Is Code

a16z.com
1 ポイント·投稿者 ykhli·先月·0 コメント

Solve identity consistency problem for foundational image models

photalabs.com
1 ポイント·投稿者 ykhli·3 か月前·0 コメント

QuiverAI beats Gemini 3.1 Pro on SVG benchmarks on Design Arena (1502 Elo score)

designarena.ai
3 ポイント·投稿者 ykhli·4 か月前·0 コメント

I analyzed hundreds of humans vs. AI Tetris games, here's what I found

a16z.news
1 ポイント·投稿者 ykhli·5 か月前·1 コメント

Show HN: TetrisBench – Gemini Flash reaches 66% win rate on Tetris against Opus

tetrisbench.com
111 ポイント·投稿者 ykhli·6 か月前·41 コメント

Show HN: Human vs. AI Tetris Arena

tetrisbench.com
2 ポイント·投稿者 ykhli·6 か月前·0 コメント

Show HN: TetrisBench – AI vs. AI vs. Human Tetris using realtime code generation

tetrisbench.com
1 ポイント·投稿者 ykhli·6 か月前·0 コメント

Exploiting parallel tool calls to make agentic search 4x faster

relace.ai
2 ポイント·投稿者 ykhli·7 か月前·0 コメント

Preserving identity in AI generated photos

photalabs.com
2 ポイント·投稿者 ykhli·10 か月前·0 コメント

Show HN: Vestaboard MCP – Let Cursor agents create art on your board

github.com
1 ポイント·投稿者 ykhli·10 か月前·0 コメント

コメント

ykhli
·5 か月前·議論
Thanks so much for the amazing feedback!!! Will update the app to incorporate these
ykhli
·5 か月前·議論
Most amazing tech blog I’ve read this week. What a great read!
ykhli
·6 か月前·議論
my unvalidated theory is that this comes down to the coding model’s training objective: Tetris is fundamentally an optimization problem with delayed rewards. Some models seem to aggressively over-optimize toward near term wins (clearing lines quickly), which looks good early but leads to brittle states and catastrophic failures later. Others appear to learn more stable heuristics like board smoothness, height control, long-term survivability even if that sacrifices short-term score

That difference in objective bias shows up very clearly in Tetris, but is much harder to notice in typical coding benchmarks. Just a theory though based on reviewing game results and logs
ykhli
·6 か月前·議論
oh that is super interesting. ty for the idea!
ykhli
·6 か月前·議論
Wow this is incredible!!
ykhli
·6 か月前·議論
answered this in a comment above! It's not turn or visual layout based since LLMs are not trained that way. The representation is a JSON structure, but LLMs plug in algorithms and keeps optimizing it as the game state evolves
ykhli
·6 か月前·議論
Thanks for all the questions! More details on how this works:

- Each model starts with an initial optimization function for evaluating Tetris moves.

- As the game progresses, the model sees the current board state and updates its algorithm—adapting its strategy based on how the game is evolving.

- The model continuously refines its optimizer. It decides when it needs to re-evaluate and when it should implement the next optimization function

- The model generates updated code, executes it to score all placements, and picks the best move.

- The reason I reframed this problem to a coding problem is Tetris is an optimization game in nature. At first I did try asking LLMs where to place each piece at every turn but models are just terrible at visual reasoning. What LLMs great at though is coding.