Tensorflow slim pre-prepared alexnet

The thin Tensorflow library provides the graph structure for alexnet, however, it does not seem to provide the alexnet checkpoint (prepared at Imagenet) ( https://github.com/tensorflow/models/tree/master/research/slim ). Is there a predefined alexnet checkpoint for TF-slim somewhere?

+6
source share
1 answer

Unlike VGG or Inception, TensorFlow does not come with pre-prepared AlexNet. Caffe does, but it’s not a trivial task to convert to a tensor flow.

Thanks to Frederik Kratzert , he completed this work and shared here.

In general, you need:

See here for more details.

0
source

Source: https://habr.com/ru/post/1014562/


All Articles