{"slug": "the-first-ai-winter-didn-t-start-with-a-funding-cut-it-started", "title": "The first AI winter didn't start with a funding cut — it started", "summary": "Marvin Minsky and Seymour Papert's 1969 book 'Perceptrons' demonstrated that a single-layer perceptron cannot solve the XOR problem, and they incorrectly argued that multi-layer networks would not help, leading to a funding freeze and the first AI winter. The author argues that the real lesson is that over-confident negative claims from prominent researchers can stall progress, a pattern repeating today with criticisms of deep learning and LLMs.", "body_md": "# The first AI winter didn't start with a funding cut — it started\n\nThe actual math is worth understanding, because it's simpler than most people think. A single-layer perceptron computes a linear decision boundary. XOR (exclusive OR) is not linearly separable — there's no single straight line that can separate the four points {0,0}, {0,1}, {1,0}, {1,1} into their correct output classes. You can verify this with a tiny Python snippet:\n\n``` python\nimport numpy as np\nX = np.array([[0,0], [0,1], [1,0], [1,1]])\ny = np.array([0, 1, 1, 0])\n\n# Try a simple perceptron weight update — it will never converge\nw = np.random.randn(2)\nb = np.random.randn()\nfor _ in range(1000):\n    pred = (X @ w + b > 0).astype(int)\n    err = y - pred\n    w += np.sum(err[:, None] * X, axis=0)\n    b += np.sum(err)\nprint(\"Predictions still stuck:\", (X @ w + b > 0).astype(int))\n```\n\nThe deeper problem was the conclusion Minsky and Papert drew. They proved the perceptron's limitations and then argued that extending it to multiple layers wouldn't help because there was no way to train hidden units. That second claim was wrong — backpropagation would be rediscovered and popularized in the 1980s. But the damage was done. Funding dried up, AI research was re-labelled as cybernetics or pattern recognition, and the field went into hibernation.\n\nWhat bothers me about this story isn't the mistake. It's the structural pattern: a big-name researcher making an over-confident negative claim, the community running with it, and then two decades of slow recovery. We keep repeating the cycle. In the 2010s, people were saying deep learning was just glorified curve fitting. Now we have people saying LLMs can't reason based on a single failed test. The echo is identical.\n\nThe lesson I take from this first AI winter is that the proof itself — the XOR limitation — was real, rigorous, and still useful today. The failure was in extrapolating a specific mathematical boundary into a general ceiling. Minsky had the technical goods but let his skepticism outrun his evidence. That's a mistake we should all be watching for, both in ourselves and in the loudest voices in the field.\n\nIf you're doing hands-on work with neural networks or just getting into prompt engineering, the history matters more than you'd think. Knowing why a single-layer model fails on XOR teaches you why we need hidden layers, nonlinear activations, and eventually architectures that can handle the messy, non-linear reality of language. The AI winter wasn't a funding problem — it was a proof that got over-interpreted. That's the real takeaway: results are robust, but conclusions deserve suspicion.\n\n[Next China's Military AI Push: Unmanned Tech Gets Priority →](/en/news/4593/)", "url": "https://wpnews.pro/news/the-first-ai-winter-didn-t-start-with-a-funding-cut-it-started", "canonical_source": "https://promptcube3.com/en/news/4595/", "published_at": "2026-08-01 01:52:15+00:00", "updated_at": "2026-08-01 02:23:49.023685+00:00", "lang": "en", "topics": ["artificial-intelligence", "machine-learning", "neural-networks", "ai-research"], "entities": ["Marvin Minsky", "Seymour Papert", "Perceptrons"], "alternates": {"html": "https://wpnews.pro/news/the-first-ai-winter-didn-t-start-with-a-funding-cut-it-started", "markdown": "https://wpnews.pro/news/the-first-ai-winter-didn-t-start-with-a-funding-cut-it-started.md", "text": "https://wpnews.pro/news/the-first-ai-winter-didn-t-start-with-a-funding-cut-it-started.txt", "jsonld": "https://wpnews.pro/news/the-first-ai-winter-didn-t-start-with-a-funding-cut-it-started.jsonld"}}