You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

51 lines
1.7 KiB

  1. <HTML>
  2. <BODY>
  3. <H2>Overview</H2>
  4. The Self-Organizing Map demonstrates tbb::flow and the use of cancellation in scheduling multiple iterations of
  5. map updates.
  6. <p>
  7. For tutorials on Self-organizing Maps, see <a href="http://www.ai-junkie.com/ann/som/som1.html">here</a> and
  8. <a href="http://davis.wpi.edu/~matt/courses/soms/">here</a>.
  9. <p>
  10. The program trains the map with several examples, splitting the map into subsections and looking for best-match
  11. for multiple examples. When an example is used to update the map, the graphs examining the sections being
  12. updated for the next example are cancelled and restarted after the update.
  13. <H2>Source Files</H2>
  14. <DL>
  15. <DT><A HREF="som_graph.cpp">som_graph.cpp</A>
  16. <DD>The main program.
  17. <DT><A HREF="som.cpp">som.cpp</A>
  18. <DD>utilities for handling the map.
  19. <DT><A HREF="som.h">som.h</A>
  20. <DD>Definitions and utilites.
  21. <DT><A HREF="Makefile">Makefile</A>, <A HREF=Makefile.windows>Makefile.windows</A>
  22. <DD>Makefiles for building example.
  23. </DL>
  24. <H2>Directories</H2>
  25. <DL>
  26. <DT><A HREF="msvs">msvs</A>
  27. <DD>Contains Microsoft* Visual Studio* 2008 workspace for building and running the
  28. example (Windows* systems only).
  29. <DT><A HREF="xcode">xcode</A>
  30. <DD>Contains Xcode* IDE workspace for building and running the example (Mac OS* X
  31. systems only).</DL>
  32. <H2>To Build</H2>
  33. General build directions can be found <A HREF=../../index.html#build>here</A>.
  34. <P></P>
  35. <HR>
  36. <A HREF="../index.html">Up to parent directory</A>
  37. <p></p>
  38. Copyright &copy; 2005-2014 Intel Corporation. All Rights Reserved.
  39. <P></P>
  40. Intel is a registered trademark or trademark of Intel Corporation
  41. or its subsidiaries in the United States and other countries.
  42. <p></p>
  43. * Other names and brands may be claimed as the property of others.
  44. </BODY>
  45. </HTML>