feat(randomNetwork): generate random networks with a simple function

This commit is contained in:
Mahdi Dibaiee
2016-07-18 17:07:12 +04:30
parent 23851a85f5
commit f5a0c23d99
3 changed files with 24 additions and 35 deletions

View File

@ -4,28 +4,23 @@ module Main where
import Data.List
import Debug.Trace
-- 1x2
-- 2x3 + 1x3
-- 3x1 + 1x1
-- main :: IO [()]
main =
main = do
let learning_rate = 0.5
(iterations, epochs) = (2, 1000)
ih = randomLayer 0 (2, 8)
ho = randomLayer 1 (8, 1)
network = ih :- O ho
rnetwork = randomNetwork 0 2 [8] 1 -- two inputs, 8 nodes in a single hidden layer, 1 output
inputs = [vector [0, 1], vector [1, 0], vector [1, 1], vector [0, 0]]
labels = [vector [1], vector [1], vector [0], vector [0]]
updated_network = session inputs network labels learning_rate (iterations, epochs)
results = map (`forward` updated_network) inputs
network = session inputs rnetwork labels learning_rate (iterations, epochs)
results = map (`forward` network) inputs
rounded = map (map round . toList) results
in sequence [putStrLn $ "inputs: " ++ show inputs,
putStrLn $ "labels: " ++ show labels,
putStrLn $ "learning rate: " ++ show learning_rate,
putStrLn $ "iterations/epochs: " ++ show (iterations, epochs),
putStrLn "...",
putStrLn $ "rounded result: " ++ show rounded,
putStrLn $ "actual result: " ++ show results]
putStrLn "parameters: "
putStrLn $ "- inputs: " ++ show inputs
putStrLn $ "- labels: " ++ show labels
putStrLn $ "- learning rate: " ++ show learning_rate
putStrLn $ "- iterations/epochs: " ++ show (iterations, epochs)
putStrLn "results: "
putStrLn $ "- actual result: " ++ show results
putStrLn $ "- rounded result: " ++ show rounded