Skip to content

Instantly share code, notes, and snippets.

@klgraham
Created April 3, 2016 17:37
Show Gist options
  • Save klgraham/7432789e65a0c9c08ae54215fe6d5e97 to your computer and use it in GitHub Desktop.
Save klgraham/7432789e65a0c9c08ae54215fe6d5e97 to your computer and use it in GitHub Desktop.
func activate(bias: Double, bW: Double, x: [Double], w: [Double]) -> Int {
var sum = 0.0
for i in 0..<x.count {
sum += x[i] * w[i]
}
sum += bias * bW
return step(sum)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment