Skip to content

Instantly share code, notes, and snippets.

@THEFASHIONGEEK
Created March 17, 2020 17:06
Show Gist options
  • Save THEFASHIONGEEK/52a1ac78ea2087b93b6cc6998f4e4cca to your computer and use it in GitHub Desktop.
Save THEFASHIONGEEK/52a1ac78ea2087b93b6cc6998f4e4cca to your computer and use it in GitHub Desktop.
network.append(gtf.resnet_v1_bottleneck_block(output_channels=64, stride=1, downsample=True));
network.append(gtf.average_pooling(kernel_size=2));
network.append(gtf.resnet_v2_bottleneck_block(output_channels=64, stride=1, downsample=True));
network.append(gtf.average_pooling(kernel_size=2));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment