Skip to content

Instantly share code, notes, and snippets.

View jeffheaton's full-sized avatar

Jeff Heaton jeffheaton

View GitHub Profile
@jeffheaton
jeffheaton / config_flickr.ini
Created December 5, 2020 21:37
Medium: Merry-ganmas
[FLICKR]
id = [your api id]
secret = [your secret/password]
[Download]
path = d:\data\christmas
search = christmas decorations
prefix = christmas
update_minutes = 1
license = 0,1,2,3,4,5,6,7,8,9,10
max_download = 100000
open DiffSharp.AD.Float64
open DiffSharp.Util
// A layer of neurons
type Layer =
{mutable W:DM // Weight matrix
mutable b:DV // Bias vector
a:DV->DV} // Activation function
// A feedforward network of several layers