8000 GitHub - nivosco/alexnet
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

nivosco/alexnet

Repository files navigation

AlexNet implementation in TensorFlow (Python3), with pre-trained weights (from Caffe):

Layers:

.conv(11, 11, 96, 4, 4, padding='VALID', name='conv1')

.lrn(2, 2e-05, 0.75, name='norm1')

.max_pool(3, 3, 2, 2, padding='VALID', name='pool1')

.conv(5, 5, 256, 1, 1, group=2, name='conv2')

.lrn(2, 2e-05, 0.75, name='norm2')

.max_pool(3, 3, 2, 2, padding='VALID', name='pool2')

.conv(3, 3, 384, 1, 1, name='conv3')

.conv(3, 3, 384, 1, 1, group=2, name='conv4')

.conv(3, 3, 256, 1, 1, group=2, name='conv5')

.fc(4096, name='fc6')

.fc(4096, name='fc7')

.fc(1000, relu=False, name='fc8')

.softmax(name='prob'))

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

0