Skip to content

Instantly share code, notes, and snippets.

@alseambusher
Created January 23, 2018 22:13
Show Gist options
  • Save alseambusher/ed455b49524a716680b486c99c69161a to your computer and use it in GitHub Desktop.
Save alseambusher/ed455b49524a716680b486c99c69161a to your computer and use it in GitHub Desktop.
conv2d definition
function conv2d(
inputs: Tensor,
filters: number,
kernel_size: number,
graph: Graph,
strides: number = 1,
padding = "valid",
data_format = "channels_last",
activation?,
kernel_initializer: Initializer = new VarianceScalingInitializer(),
bias_initializer: Initializer = new ZerosInitializer(),
name: string = "")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment