Skip to content

Instantly share code, notes, and snippets.

View JPMoresmau's full-sized avatar

JP Moresmau JPMoresmau

View GitHub Profile
type Value = Float
type Neuron= ([Value],Value)
type Network = ([Neuron],[Neuron])
class DeepSeq a where
deepSeq :: a -> a
deepSeq x=x `seq` x
instance DeepSeq Value