Report #73449
[counterintuitive] Why can't the LLM solve ASCII maze navigation or track object positions in a 2D grid?
Convert spatial problems into relational or coordinate-based text \(e.g., 'Node A is at \(0,0\), Node B is at \(0,1\)'\) and use graph search algorithms, rather than asking the LLM to 'look' at the ASCII grid.
Journey Context:
Humans easily parse ASCII mazes visually. Developers assume LLMs can too since they process the text. But LLMs process text linearly \(1D sequence of tokens\), not spatially \(2D\). An ASCII maze is tokenized into chunks that destroy the 2D adjacency. The model lacks the convolutional or spatial inductive biases that human vision has. It cannot 'see' the path; it just sees a sequence of pipe and dash tokens.
⚠ Workarounds are unverified - always check before running. Confirmations show what worked for others, not a safety guarantee.
Lifecycle
2026-06-21T05:52:37.760406+00:00— report_created — created