som 7.2.3 → 7.2.4
raw patch · 8 files changed
+46/−35 lines, 8 files
Files
- som.cabal +28/−29
- src/Data/Datamining/Clustering/Classifier.hs +1/−1
- src/Data/Datamining/Clustering/DSOM.hs +1/−1
- src/Data/Datamining/Clustering/DSOMInternal.hs +1/−1
- src/Data/Datamining/Clustering/SOM.hs +1/−1
- src/Data/Datamining/Clustering/SOMInternal.hs +1/−1
- src/Data/Datamining/Pattern.hs +1/−1
- test/Main.hs +12/−0
som.cabal view
@@ -1,31 +1,30 @@-name: som-version: 7.2.3-synopsis: Self-Organising Maps-description: A Kohonen Self-organising Map (SOM) maps input patterns - onto a regular grid (usually two-dimensional) where each- node in the grid is a model of the input data, and does- so using a method which ensures that any topological- relationships within the input data are also represented- in the grid. This implementation supports the use of - non-numeric patterns.- .- In layman's terms, a SOM can be useful when you you want- to discover the underlying structure of some data.- .- The userguide is available at - <https://github.com/mhwombat/som/wiki>.-category: Math--cabal-version: >=1.8-build-type: Simple-author: Amy de Buitléir-copyright: (c) Amy de Buitléir 2010-2012-homepage: https://github.com/mhwombat/som-bug-reports: https://github.com/mhwombat/som/issues-license: BSD3-stability: experimental-maintainer: amy@nualeargais.ie-license-file: LICENSE+Name: som+Version: 7.2.4+Stability: experimental+Synopsis: Self-Organising Maps.+Description: A Kohonen Self-organising Map (SOM) maps input patterns + onto a regular grid (usually two-dimensional) where each+ node in the grid is a model of the input data, and does+ so using a method which ensures that any topological+ relationships within the input data are also represented+ in the grid. This implementation supports the use of + non-numeric patterns.+ .+ In layman's terms, a SOM can be useful when you you want+ to discover the underlying structure of some data.+ .+ The userguide is available at + <https://github.com/mhwombat/som/wiki>.+Category: Math+License: BSD3+License-file: LICENSE+Copyright: (c) Amy de Buitléir 2010-2014+Homepage: https://github.com/mhwombat/som+Bug-reports: https://github.com/mhwombat/som/issues+Author: Amy de Buitléir+Maintainer: amy@nualeargais.ie+Build-Type: Simple+Cabal-Version: >=1.8 source-repository head type: git@@ -34,7 +33,7 @@ source-repository this type: git location: https://github.com/mhwombat/som.git- tag: 7.2.3+ tag: 7.2.4 library
src/Data/Datamining/Clustering/Classifier.hs view
@@ -1,7 +1,7 @@ ------------------------------------------------------------------------ -- | -- Module : Data.Datamining.Clustering.Classifier--- Copyright : (c) Amy de Buitléir 2012-2013+-- Copyright : (c) Amy de Buitléir 2012-2014 -- License : BSD-style -- Maintainer : amy@nualeargais.ie -- Stability : experimental
src/Data/Datamining/Clustering/DSOM.hs view
@@ -1,7 +1,7 @@ ------------------------------------------------------------------------ -- | -- Module : Data.Datamining.Clustering.SOM--- Copyright : (c) Amy de Buitléir 2012-2013+-- Copyright : (c) Amy de Buitléir 2012-2014 -- License : BSD-style -- Maintainer : amy@nualeargais.ie -- Stability : experimental
src/Data/Datamining/Clustering/DSOMInternal.hs view
@@ -1,7 +1,7 @@ ------------------------------------------------------------------------ -- | -- Module : Data.Datamining.Clustering.DSOMInternal--- Copyright : (c) Amy de Buitléir 2012-2013+-- Copyright : (c) Amy de Buitléir 2012-2014 -- License : BSD-style -- Maintainer : amy@nualeargais.ie -- Stability : experimental
src/Data/Datamining/Clustering/SOM.hs view
@@ -1,7 +1,7 @@ ------------------------------------------------------------------------ -- | -- Module : Data.Datamining.Clustering.SOM--- Copyright : (c) Amy de Buitléir 2012-2013+-- Copyright : (c) Amy de Buitléir 2012-2014 -- License : BSD-style -- Maintainer : amy@nualeargais.ie -- Stability : experimental
src/Data/Datamining/Clustering/SOMInternal.hs view
@@ -1,7 +1,7 @@ ------------------------------------------------------------------------ -- | -- Module : Data.Datamining.Clustering.SOMInternal--- Copyright : (c) Amy de Buitléir 2012-2013+-- Copyright : (c) Amy de Buitléir 2012-2014 -- License : BSD-style -- Maintainer : amy@nualeargais.ie -- Stability : experimental
src/Data/Datamining/Pattern.hs view
@@ -1,7 +1,7 @@ ------------------------------------------------------------------------ -- | -- Module : Data.Datamining.Pattern--- Copyright : (c) Amy de Buitléir 2012-2013+-- Copyright : (c) Amy de Buitléir 2012-2014 -- License : BSD-style -- Maintainer : amy@nualeargais.ie -- Stability : experimental
test/Main.hs view
@@ -1,3 +1,15 @@+------------------------------------------------------------------------+-- |+-- Module : Main+-- Copyright : (c) Amy de Buitléir 2012-2014+-- License : BSD-style+-- Maintainer : amy@nualeargais.ie+-- Stability : experimental+-- Portability : portable+--+-- Tests+--+------------------------------------------------------------------------ {-# LANGUAGE UnicodeSyntax #-} module Main where