This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Simple environment setup script | |
# Install Applications | |
choco install fiddler4 | |
choco install notepadplusplus | |
choco install visualstudiocode | |
choco install greenshot | |
choco install GoogleChrome | |
choco install putty | |
choco install ccleaner |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// from http://blog.codebeside.org/post/2011/10/27/F-as-a-OctaveMatlab-replacement-for-Machine-Learning.aspx | |
let featureNormalize (X: #Matrix<float>) = | |
let μ = | |
X.ColumnEnumerator() | |
|> Seq.map (fun (j, col) -> col.Mean()) | |
|> DenseVector.ofSeq | |
let σ = | |
X.ColumnEnumerator() |