|
|
|
|
|
by maxander
2948 days ago
|
|
The article is making a simpler point than that. If I show you the table: A B C
1 4 3
20 45 15
8 15 7
And so on for some arbitrary number of rows, you can look at the table all you want but you will not perceive "A+C=B". It's just not written there. To get A+C=B you have to generate something else in addition to the table, namely a hypothesis- but this is a creative act, not an empirical one. |
|
Here's a quick gist[0] doing it using least-squares, and learning it exactly (also, for B in the third row you may have intended 35 instead of 45?).
This simple regression model learns exactly the weights (-1, 1)—equivalently, it learns -A + B = C.
------
[0] https://gist.github.com/guillean/6f3ff05fa99b2b377fcf309bdc4...