Skip to content

Instantly share code, notes, and snippets.

View chasingbob's full-sized avatar

Dries chasingbob

View GitHub Profile
@ideaflare
ideaflare / NeuralNet.fsx
Last active May 19, 2016 10:48
Basic Feed-Forward Neural network in F#, tested with crude random search training to generalize XOR.
//------------------------------- 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 =
@chasingbob
chasingbob / ListExtensions.cs
Created October 22, 2015 06:13
List Extension methods - first extension method creates a csv delimited string
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.
@ideaflare
ideaflare / AgileWisdom.md
Last active October 23, 2015 09:17 — forked from chasingbob/AgileWisdom.md
Agile Wisdom

######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.

@chasingbob
chasingbob / AgileWisdom.md
Last active November 23, 2024 22:37
Agile Wisdom

######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.