[docs] ‘maximally accurate’ in the web demo explanation. closes #905
authorSergey Karayev <sergeykarayev@gmail.com>
Mon, 11 Aug 2014 22:59:48 +0000 (15:59 -0700)
committerSergey Karayev <sergeykarayev@gmail.com>
Mon, 11 Aug 2014 22:59:48 +0000 (15:59 -0700)
examples/web_demo/readme.md

index 873b4fd..b0c14e3 100644 (file)
@@ -29,3 +29,10 @@ You can enable debug mode of the web server, or switch to a different port:
       -h, --help            show this help message and exit
       -d, --debug           enable debug mode
       -p PORT, --port=PORT  which port to serve content on
+
+## How are the "maximally accurate" results generated?
+
+In a nutshell: ImageNet predictions are made at the leaf nodes, but the organization of the project allows leaf nodes to be united via more general parent nodes, with 'entity' at the very top.
+To give "maximally accurate" results, we "back off" from maximally specific predictions to maintain a high accuracy.
+The `bet_file` that is loaded in the demo provides the graph structure and names of all relevant ImageNet nodes as well as measures of information gain between them.
+Please see the "Hedging your bets" paper from [CVPR 2012](http://www.image-net.org/projects/hedging/) for further information.