######DeveloperUG 13 October 2015
######Paul:
###Balance Love what you do
###Communication Choose your medium - you do not write in the same style on slack/skype than how you would in a formal e-mail.
| //------------------------------- Create Network ------------------------------- | |
| type Neuron = { Weights : float list ; Bias : float } | |
| type Layer = { Neurons : Neuron list } | |
| type Network = { Layers : Layer list } | |
| let rnd = System.Random() | |
| let randomWeight _ = (2.0 * rnd.NextDouble()) - 1.0 | |
| let buildNeuron inputs = |
| public static class ListExtentions | |
| { | |
| /// <summary> | |
| /// Converts this instance to delimited text. | |
| /// </summary> | |
| /// <typeparam name="T"></typeparam> | |
| /// <param name="instance">The instance.</param> | |
| /// <param name="delimiter">The delimiter.</param> | |
| /// <param name="includeHeader"> | |
| /// if set to <c>true</c> then the header row is included. |
######DeveloperUG 13 October 2015
######Paul:
###Balance Love what you do
###Communication Choose your medium - you do not write in the same style on slack/skype than how you would in a formal e-mail.
######DeveloperUG 13 October 2015
######Paul:
###Balance Love what you do
###Communication Choose your medium - you do not write in the same style on slack/skype than how you would in a formal e-mail.