Hacker News new | ask | show | jobs
by dvdplm 2991 days ago
What exactly is the output of the example in `test.c`? I.e. what do the numbers mean? The error in the prediction I guess, but the prediction of what? What is the first entry in the semion data set? a "0"?
2 comments

The first row of output is the vector of numerals 0-9 where 1.0 indicates "it was this digit."

The second row is the probability of each given the input.

e.g. This output means it's 98.6% certain that the input represents the digit 7.

    0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.000000 0.000000 0.000000 
    0.000009 0.000005 0.000000 0.000000 0.003899 0.012933 0.000436 0.986013 0.000005 0.000000
No kidding. Does the output mean "hot dog" or "not hot dog"?