diff --git a/AI/HNN/Layer.hs b/AI/HNN/Layer.hs
new file mode 100644
--- /dev/null
+++ b/AI/HNN/Layer.hs
@@ -0,0 +1,68 @@
+-- | Layer module, defining functions to work on a neural network layer, which is a list of neurons
+module AI.HNN.Layer where
+
+import AI.HNN.Neuron
+import Control.Arrow
+import Data.Array.Vector
+import Data.List
+
+-- * Layer creation
+
+-- | Creates a layer compound of n neurons with the Sigmoid transfer function, all having the given threshold and weights.
+createSigmoidLayerU :: Int -> Double -> UArr Double -> [Neuron]
+createSigmoidLayerU n threshold weights = 
+             let neuron = createNeuronSigmoidU threshold weights in
+             take n . repeat $ neuron
+
+-- | Creates a layer compound of n neurons with the Heavyside transfer function, all having the given threshold and weights.
+createHeavysideLayerU :: Int -> Double -> UArr Double -> [Neuron]
+createHeavysideLayerU n threshold weights =
+             let neuron = createNeuronSigmoidU threshold weights in 
+             take n . repeat $ neuron
+
+-- | Creates a layer compound of n neurons with the sigmoid transfer function, all having the given threshold and weights.
+createSigmoidLayer :: Int -> Double -> [Double] -> [Neuron]
+createSigmoidLayer n threshold = createSigmoidLayerU n threshold . toU
+
+-- | Creates a layer compound of n neurons with the sigmoid transfer function, all having the given threshold and weights.
+createHeavysideLayer :: Int -> Double -> [Double] -> [Neuron]
+createHeavysideLayer n threshold = createHeavysideLayerU n threshold . toU
+
+-- * Computation
+
+-- | Computes the outputs of each Neuron of the layer
+computeLayerU :: [Neuron] -> UArr Double -> UArr Double
+computeLayerU ns inputs = toU $ map (\n -> computeU n inputs) ns
+
+-- | Computes the outputs of each Neuron of the layer
+computeLayer :: [Neuron] -> [Double] -> [Double]
+computeLayer ns = fromU . computeLayerU ns . toU
+
+-- * Learning
+
+-- | Trains each neuron with the given sample and the given learning ratio
+learnSampleLayerU :: Double -> [Neuron] -> (UArr Double, UArr Double) -> [Neuron]
+learnSampleLayerU alpha ns (xs, ys) = zipWith (\n y -> learnSampleU alpha n (xs, y)) ns (fromU ys)
+
+-- | Trains each neuron with the given sample and the given learning ratio
+learnSampleLayer :: Double -> [Neuron] -> ([Double], [Double]) -> [Neuron]
+learnSampleLayer alpha ns = learnSampleLayerU alpha ns . (toU *** toU)
+
+-- | Trains each neuron with the given samples and the given learning ratio
+learnSamplesLayerU :: Double -> [Neuron] -> [(UArr Double, UArr Double)] -> [Neuron]
+learnSamplesLayerU alpha = foldl' (learnSampleLayerU alpha)
+
+-- | Trains each neuron with the given samples and the given learning ratio
+learnSamplesLayer :: Double -> [Neuron] -> [([Double], [Double])] -> [Neuron]
+learnSamplesLayer alpha ns = learnSamplesLayerU alpha ns . map (toU *** toU)
+
+-- * Quadratic Error
+
+-- | Returns the quadratic error of a layer for a given sample
+quadErrorU :: [Neuron] -> (UArr Double, UArr Double) -> Double
+quadErrorU ns (xs, ys) = let os = computeLayerU ns xs
+                        in (/2) $ sumU $ zipWithU (\o y -> (y - o)**2) os ys
+
+-- | Returns the quadratic error of a layer for a given sample
+quadError :: [Neuron] -> ([Double], [Double]) -> Double
+quadError ns = quadErrorU ns . (toU *** toU)
diff --git a/AI/HNN/Net.hs b/AI/HNN/Net.hs
new file mode 100644
--- /dev/null
+++ b/AI/HNN/Net.hs
@@ -0,0 +1,71 @@
+-- | Net module, defining functions to work on a neural network, which is a list of list of neurons 
+module AI.HNN.Net where
+
+import AI.HNN.Layer
+import AI.HNN.Neuron
+import Control.Arrow
+import Data.List
+import Data.Array.Vector
+
+check :: [[Neuron]] -> Bool
+check nss = let l = length nss in l > 1 && l < 3
+
+nn :: [[Neuron]] -> [[Neuron]]
+nn nss | check nss = nss
+       | otherwise = error "Invalid nn"
+
+-- * Computation
+
+-- | Computes the output of the given neural net on the given inputs
+computeNetU :: [[Neuron]] -> UArr Double -> UArr Double
+computeNetU neuralss xs = let nss = nn neuralss in computeLayerU (nss !! 1) $ computeLayerU (head nss) xs
+  
+-- | Computes the output of the given neural net on the given inputs
+computeNet :: [[Neuron]] -> [Double] -> [Double]
+computeNet neuralss = fromU . computeNetU neuralss . toU
+
+-- * Quadratic Error
+
+-- | Returns the quadratic error of the neural network on the given sample
+quadErrorNetU :: [[Neuron]] -> (UArr Double, UArr Double) -> Double
+quadErrorNetU nss (xs,ys) = (sumU . zipWithU (\y s -> (y - s)**2) ys $ computeNetU nss xs)/2.0
+
+-- | Returns the quadratic error of the neural network on the given sample
+quadErrorNet :: [[Neuron]] -> ([Double], [Double]) -> Double
+quadErrorNet nss = quadErrorNetU nss . (toU *** toU)
+
+-- | Returns the quadratic error of the neural network on the given samples
+globalQuadErrorNetU :: [[Neuron]] -> [(UArr Double, UArr Double)] -> Double
+globalQuadErrorNetU nss = sum . map (quadErrorNetU nss)
+
+-- | Returns the quadratic error of the neural network on the given samples
+globalQuadErrorNet :: [[Neuron]] -> [([Double], [Double])] -> Double
+globalQuadErrorNet nss = globalQuadErrorNetU nss . map (toU *** toU)
+
+-- * Learning
+
+-- | Train the given neural network using the backpropagation algorithm on the given sample with the given learning ratio (alpha)
+backPropU :: Double -> [[Neuron]] -> (UArr Double, UArr Double) -> [[Neuron]]
+backPropU alpha nss (xs, ys) = [aux (head nss) ds_hidden xs
+                        ,aux (nss !! 1) ds_out output_hidden]
+    where 
+      output_hidden = computeLayerU (head nss) xs
+      output_out = computeLayerU (nss !! 1) output_hidden
+      ds_out = zipWithU (\s y -> s * (1 - s) * (y - s)) output_out ys
+      ds_hidden = zipWithU (\x s -> x * (1-x) * s) output_hidden . toU $ map (sumU . zipWithU (*) ds_out) . map toU . transpose . map (fromU . weights) $ (nss !! 1)
+      aux ns ds xs = zipWith (\n d -> n { weights = zipWithU (\w x -> w + alpha * d * x) (weights n) xs }) ns (fromU ds)
+
+-- | Train the given neural network using the backpropagation algorithm on the given sample with the given learning ratio (alpha)
+backProp :: Double -> [[Neuron]] -> ([Double], [Double]) -> [[Neuron]]
+backProp alpha nss = backPropU alpha nss . (toU *** toU)
+
+trainAux :: Double -> [[Neuron]] -> [(UArr Double, UArr Double)] -> [[Neuron]]
+trainAux alpha = foldl' (backPropU alpha)
+
+-- | Train the given neural network on the given samples using the backpropagation algorithm using the given learning ratio (alpha) and the given desired maximal bound for the global quadratic error on the samples (epsilon)
+trainU :: Double -> Double -> [[Neuron]] -> [(UArr Double, UArr Double)] -> [[Neuron]]
+trainU alpha epsilon nss samples = until (\nss' -> globalQuadErrorNetU nss' samples < epsilon) (\nss' -> trainAux alpha nss' samples) nss
+
+-- | Train the given neural network on the given samples using the backpropagation algorithm using the given learning ratio (alpha) and the given desired maximal bound for the global quadratic error on the samples (epsilon)
+train :: Double -> Double -> [[Neuron]] -> [([Double], [Double])] -> [[Neuron]]
+train alpha epsilon nss = trainU alpha epsilon nss . map (toU *** toU)
diff --git a/AI/HNN/Neuron.hs b/AI/HNN/Neuron.hs
new file mode 100644
--- /dev/null
+++ b/AI/HNN/Neuron.hs
@@ -0,0 +1,89 @@
+-- | Neuron module, defining an artificial neuron type and the basical operations we can do on it
+module AI.HNN.Neuron where
+
+import Data.Array.Vector
+import Data.List
+
+-- * Type Definitions, type class instances
+
+-- | Our Artificial Neuron type
+data Neuron = Neuron {
+      threshold :: Double
+    , weights   :: UArr Double
+    , func      :: Double -> Double
+    }
+
+instance Show Neuron where
+    show n = "Threshold : " ++ show (threshold n) ++ "\nWeights : " ++ show (weights n)
+
+-- * Neuron creation
+
+-- | Creates a Neuron with the given threshold, weights and transfer function
+createNeuronU :: Double -> UArr Double -> (Double -> Double) -> Neuron
+createNeuronU t ws f = Neuron { threshold = t, weights = ws, func = f }
+
+-- | Equivalent to `createNeuronU t ws heavyside'
+createNeuronHeavysideU :: Double -> UArr Double -> Neuron
+createNeuronHeavysideU t ws = createNeuronU t ws heavyside
+
+-- | Equivalent to `createNeuronU t ws sigmoid'
+createNeuronSigmoidU :: Double -> UArr Double -> Neuron
+createNeuronSigmoidU t ws = createNeuronU t ws sigmoid
+
+-- | Same as createNeuronU, with a list instead of an UArr for the weights (converted to UArr anyway)
+createNeuron :: Double -> [Double] -> (Double -> Double) -> Neuron
+createNeuron t ws f = createNeuronU t (toU ws) f
+
+-- | Same as createNeuronHeavysideU, with a list instead of an UArr for the weights (converted to UArr anyway)
+createNeuronHeavyside :: Double -> [Double] -> Neuron
+createNeuronHeavyside t ws = createNeuronU t (toU ws) heavyside
+
+-- | Same as createNeuronSigmoidU, with a list instead of an UArr for the weights (converted to UArr anyway)
+createNeuronSigmoid :: Double -> [Double] -> Neuron
+createNeuronSigmoid t ws = createNeuronU t (toU ws) sigmoid
+
+-- * Transfer functions
+
+-- | The Heavyside function
+heavyside :: Double -> Double
+heavyside x | x >= 0 = 1.0
+heavyside _ = 0.0
+
+-- | The Sigmoid function
+sigmoid :: Double -> Double
+sigmoid x = 1.0 / (1 + exp (-x))
+
+-- * Neuron output computation
+
+-- | Computes the output of a given Neuron for given inputs
+computeU :: Neuron -> UArr Double -> Double
+computeU n inputs | lengthU inputs == lengthU (weights n) 
+                     = func n $ sumU (zipWithU (*) (weights n) inputs) - threshold n
+computeU n inputs = error $ "Number of inputs != Number of weights\n" ++ show n ++ "\nInput : " ++ show inputs
+
+-- | Computes the output of a given Neuron for given inputs
+compute :: Neuron -> [Double] -> Double
+compute n = computeU n . toU
+
+-- * Neuron learning with Widrow-Hoff (Delta rule)
+
+-- | Trains a neuron with the given sample, of the form (inputs, wanted_result) and the given learning ratio (alpha)
+learnSampleU :: Double -> Neuron -> (UArr Double, Double) -> Neuron
+learnSampleU alpha n (xs, y) = Neuron { 
+                          threshold = threshold n
+                        , weights = map_weights (weights n) (xs, y) 
+                        , func = func n
+                        }
+    where map_weights ws (xs, y) = let s = computeU n xs in
+                                   zipWithU (\w_i x_i -> w_i + alpha*(y-s)*x_i) ws xs
+
+learnSample :: Double -> Neuron -> ([Double], Double) -> Neuron
+learnSample alpha n (xs, y) = learnSampleU alpha n (toU xs, y)
+
+-- | Trains a neuron with the given samples and the given learning ratio (alpha)
+learnSamplesU :: Double -> Neuron -> [(UArr Double, Double)] -> Neuron
+learnSamplesU alpha = foldl' (learnSampleU alpha)
+
+-- | Trains a neuron with the given samples and the given learning ratio (alpha)
+learnSamples :: Double -> Neuron -> [([Double], Double)] -> Neuron
+learnSamples alpha n samples = learnSamplesU alpha n $ map (\(xs, y) -> (toU xs, y)) samples
diff --git a/LICENSE b/LICENSE
new file mode 100644
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,65 @@
+GNU LESSER GENERAL PUBLIC LICENSE
+
+Version 3, 29 June 2007
+
+Copyright © 2007 Free Software Foundation, Inc. <http://fsf.org/>
+
+Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed.
+
+This version of the GNU Lesser General Public License incorporates the terms and conditions of version 3 of the GNU General Public License, supplemented by the additional permissions listed below.
+0. Additional Definitions.
+
+As used herein, “this License” refers to version 3 of the GNU Lesser General Public License, and the “GNU GPL” refers to version 3 of the GNU General Public License.
+
+“The Library” refers to a covered work governed by this License, other than an Application or a Combined Work as defined below.
+
+An “Application” is any work that makes use of an interface provided by the Library, but which is not otherwise based on the Library. Defining a subclass of a class defined by the Library is deemed a mode of using an interface provided by the Library.
+
+A “Combined Work” is a work produced by combining or linking an Application with the Library. The particular version of the Library with which the Combined Work was made is also called the “Linked Version”.
+
+The “Minimal Corresponding Source” for a Combined Work means the Corresponding Source for the Combined Work, excluding any source code for portions of the Combined Work that, considered in isolation, are based on the Application, and not on the Linked Version.
+
+The “Corresponding Application Code” for a Combined Work means the object code and/or source code for the Application, including any data and utility programs needed for reproducing the Combined Work from the Application, but excluding the System Libraries of the Combined Work.
+1. Exception to Section 3 of the GNU GPL.
+
+You may convey a covered work under sections 3 and 4 of this License without being bound by section 3 of the GNU GPL.
+2. Conveying Modified Versions.
+
+If you modify a copy of the Library, and, in your modifications, a facility refers to a function or data to be supplied by an Application that uses the facility (other than as an argument passed when the facility is invoked), then you may convey a copy of the modified version:
+
+    * a) under this License, provided that you make a good faith effort to ensure that, in the event an Application does not supply the function or data, the facility still operates, and performs whatever part of its purpose remains meaningful, or
+    * b) under the GNU GPL, with none of the additional permissions of this License applicable to that copy.
+
+3. Object Code Incorporating Material from Library Header Files.
+
+The object code form of an Application may incorporate material from a header file that is part of the Library. You may convey such object code under terms of your choice, provided that, if the incorporated material is not limited to numerical parameters, data structure layouts and accessors, or small macros, inline functions and templates (ten or fewer lines in length), you do both of the following:
+
+    * a) Give prominent notice with each copy of the object code that the Library is used in it and that the Library and its use are covered by this License.
+    * b) Accompany the object code with a copy of the GNU GPL and this license document.
+
+4. Combined Works.
+
+You may convey a Combined Work under terms of your choice that, taken together, effectively do not restrict modification of the portions of the Library contained in the Combined Work and reverse engineering for debugging such modifications, if you also do each of the following:
+
+    * a) Give prominent notice with each copy of the Combined Work that the Library is used in it and that the Library and its use are covered by this License.
+    * b) Accompany the Combined Work with a copy of the GNU GPL and this license document.
+    * c) For a Combined Work that displays copyright notices during execution, include the copyright notice for the Library among these notices, as well as a reference directing the user to the copies of the GNU GPL and this license document.
+    * d) Do one of the following:
+          o 0) Convey the Minimal Corresponding Source under the terms of this License, and the Corresponding Application Code in a form suitable for, and under terms that permit, the user to recombine or relink the Application with a modified version of the Linked Version to produce a modified Combined Work, in the manner specified by section 6 of the GNU GPL for conveying Corresponding Source.
+          o 1) Use a suitable shared library mechanism for linking with the Library. A suitable mechanism is one that (a) uses at run time a copy of the Library already present on the user's computer system, and (b) will operate properly with a modified version of the Library that is interface-compatible with the Linked Version.
+    * e) Provide Installation Information, but only if you would otherwise be required to provide such information under section 6 of the GNU GPL, and only to the extent that such information is necessary to install and execute a modified version of the Combined Work produced by recombining or relinking the Application with a modified version of the Linked Version. (If you use option 4d0, the Installation Information must accompany the Minimal Corresponding Source and Corresponding Application Code. If you use option 4d1, you must provide the Installation Information in the manner specified by section 6 of the GNU GPL for conveying Corresponding Source.)
+
+5. Combined Libraries.
+
+You may place library facilities that are a work based on the Library side by side in a single library together with other library facilities that are not Applications and are not covered by this License, and convey such a combined library under terms of your choice, if you do both of the following:
+
+    * a) Accompany the combined library with a copy of the same work based on the Library, uncombined with any other library facilities, conveyed under the terms of this License.
+    * b) Give prominent notice with the combined library that part of it is a work based on the Library, and explaining where to find the accompanying uncombined form of the same work.
+
+6. Revised Versions of the GNU Lesser General Public License.
+
+The Free Software Foundation may publish revised and/or new versions of the GNU Lesser General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns.
+
+Each version is given a distinguishing version number. If the Library as you received it specifies that a certain numbered version of the GNU Lesser General Public License “or any later version” applies to it, you have the option of following the terms and conditions either of that published version or of any later version published by the Free Software Foundation. If the Library as you received it does not specify a version number of the GNU Lesser General Public License, you may choose any version of the GNU Lesser General Public License ever published by the Free Software Foundation.
+
+If the Library as you received it specifies that a proxy can decide whether future versions of the GNU Lesser General Public License shall apply, that proxy's public statement of acceptance of any version is permanent authorization for you to choose that version for the Library.
diff --git a/Setup.lhs b/Setup.lhs
new file mode 100644
--- /dev/null
+++ b/Setup.lhs
@@ -0,0 +1,3 @@
+#!/usr/bin/env runhaskell
+> import Distribution.Simple
+> main = defaultMain
diff --git a/hnn.cabal b/hnn.cabal
new file mode 100644
--- /dev/null
+++ b/hnn.cabal
@@ -0,0 +1,15 @@
+name:                hnn
+version:             0.1
+synopsis:            A minimal Haskell Neural Network Library
+description:         hnn provides minimal types and functions to create, train and use feed forward neural networks <http://www.haskell.org/haskellwiki/HNN>
+category:            AI
+license:             LGPL
+license-file:        LICENSE
+author:              Alp Mestanogullari
+maintainer:          alpmestan@gmail.com
+build-depends:       base >= 3 && <= 5
+build-type:          Simple 
+cabal-version:       >= 1.2
+Library
+  Build-Depends:     uvector, base >= 3 && <= 5
+  Exposed-modules:   AI.HNN.Neuron, AI.HNN.Layer, AI.HNN.Net
