home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #23 / NN_1992_23.iso / spool / sci / engr / control / 168 < prev    next >
Encoding:
Text File  |  1992-10-11  |  5.1 KB  |  116 lines

  1. Newsgroups: sci.engr.control
  2. Path: sparky!uunet!mcsun!fuug!funic!nntp.hut.fi!nntp.hut.fi!lvq
  3. From: lvq@cochlea.hut.fi (LVQ_PAK)
  4. Subject: Release of Self-Organizing Maps PD program package
  5. Message-ID: <LVQ.92Oct12083411@cochlea.hut.fi>
  6. Sender: usenet@nntp.hut.fi (Usenet pseudouser id)
  7. Nntp-Posting-Host: cochlea.hut.fi
  8. Reply-To: lvq@cochlea.hut.fi
  9. Organization: Helsinki University of Technology, Finland
  10. Distribution: sci
  11. Date: 12 Oct 92 08:34:11
  12. Lines: 102
  13.  
  14. ************************************************************************
  15. *                                                                      *
  16. *                              SOM_PAK                                 *
  17. *                                                                      *
  18. *                                The                                   *
  19. *                                                                      *
  20. *                        Self-Organizing Map                           *
  21. *                                                                      *
  22. *                          Program  Package                            *
  23. *                                                                      *
  24. *                   Version 1.0 (October 9, 1992)                      *
  25. *                                                                      *
  26. *                          Prepared by the                             *
  27. *                    SOM Programming Team of the                       *
  28. *                 Helsinki University of Technology                    *
  29. *           Laboratory of Computer and Information Science             *
  30. *                Rakentajanaukio 2 C, SF-02150 Espoo                   *
  31. *                              FINLAND                                 *
  32. *                                                                      *
  33. *                         Copyright (c) 1992                           *
  34. *                                                                      *
  35. ************************************************************************
  36.  
  37. Some time ago we released the software package "LVQ_PAK" for
  38. the easy application of Learning Vector Quantization algorithms.
  39. Corresponding public-domain programs for the Self-Organizing Map (SOM) 
  40. algorithms are now available via anonymous FTP on the Internet. 
  41.  
  42. "What does the Self-Organizing Map mean?", you may ask --- See the
  43. following reference, then: Teuvo Kohonen. The self-organizing map.
  44. Proceedings of the IEEE,  78(9):1464-1480, 1990.
  45.  
  46. In short, Self-Organizing Map (SOM) defines a 'non-linear projection'
  47. of the probability density function of the high-dimensional input data
  48. onto the two-dimensional display. SOM places a number of reference
  49. vectors into an input data space to approximate to its data set in an
  50. ordered fashion.
  51.  
  52. This package contains all the programs necessary for the application
  53. of Self-Organizing Map algorithms in an arbitrary complex data
  54. visualization task.  
  55.  
  56. This code is distributed without charge on an "as is" basis.
  57. There is no warranty of any kind by the authors or by Helsinki
  58. University of Technology.
  59.  
  60. In the implementation of the SOM programs we have tried to use as
  61. simple code as possible. Therefore the programs are supposed to
  62. compile in various machines without any specific modifications made on
  63. the code. All programs have been written in ANSI C. The programs are 
  64. available in two archive formats, one for the UNIX-environment, the
  65. other for MS-DOS. Both archives contain exactly the same files. 
  66.  
  67. These files can be accessed via FTP as follows:
  68.  
  69. 1. Create an FTP connection from wherever you are to machine
  70.    "cochlea.hut.fi". The internet address of this machine is 
  71.    130.233.168.48, for those who need it.
  72.  
  73. 2. Log in as user "anonymous" with your own e-mail address as password.  
  74.  
  75. 3. Change remote directory to "/pub/som_pak". 
  76.  
  77. 4. At this point FTP should be able to get a listing of files in this
  78.    directory with DIR and fetch the ones you want with GET. (The exact 
  79.    FTP commands you use depend on your local FTP program.) Remember 
  80.    to use the binary transfer mode for compressed files.
  81.  
  82. The som_pak program package includes the following files:
  83.  
  84.   - Documentation:
  85.       README             short description of the package 
  86.                          and installation instructions
  87.       som_doc.ps         documentation in (c) PostScript format
  88.       som_doc.ps.Z       same as above but compressed
  89.       som_doc.txt        documentation in ASCII format
  90.  
  91.   - Source file archives (which contain the documentation, too):
  92.       som_p1r0.exe       Self-extracting MS-DOS archive file
  93.       som_pak-1.0.tar    UNIX tape archive file
  94.       som_pak-1.0.tar.Z  same as above but compressed
  95.  
  96.  
  97. An example of FTP access is given below
  98.  
  99. unix> ftp cochlea.hut.fi (or 130.233.168.48)
  100. Name: anonymous
  101. Password: <your email address>
  102. ftp> cd /pub/som_pak
  103. ftp> binary
  104. ftp> get som_pak-1.0.tar.Z
  105. ftp> quit
  106. unix> uncompress som_pak-1.0.tar.Z
  107. unix> tar xvfo som_pak-1.0.tar
  108.  
  109. See file README for further installation instructions.
  110.  
  111. All comments concerning this package should be
  112. addressed to som@cochlea.hut.fi.
  113.  
  114. ************************************************************************
  115.  
  116.