gpt4 book ai didi

python - Caffe 提供的 AlexNet 模型

转载 作者:行者123 更新时间:2023-12-01 01:42:13 25 4
gpt4 key购买 nike

我一直在使用 TensorFlow,但对 Caffe 还很陌生。我想尝试在 ImageNet 上训练的 AlexNet 的可靠实现,我发现 official Caffe repository 中包含一个。 .

我能够链接 bvlc_alexnet.caffemodel 中打包的权重文件和 deploy.prototxt 中指定的模型在非常短的 Caffe 代码中,获得与网络将图像分类到的 1000 个类别相对应的 1000 个概率的输出向量。

import numpy as np
import matplotlib.pyplot as plt
import sys
import caffe
import operator

MODEL_FILE = 'D:\\Desktop\\caffe\\models\\bvlc_alexnet\\deploy.prototxt'
PRETRAINED = 'D:\\AlexNet_Caffe\\bvlc_alexnet.caffemodel'

net = caffe.Classifier(MODEL_FILE, PRETRAINED)


IMAGE_FILE = 'D:\\Desktop\\caffe\\python\\testIm1.jpg'
input_image1 = caffe.io.load_image(IMAGE_FILE)

IMAGE_FILE = 'D:\\Desktop\\caffe\\python\\testIm2.jpg'
input_image2 = caffe.io.load_image(IMAGE_FILE)


pred = net.predict([input_image1, input_image2])
print pred # prints the array of 1000 probabilities


index, value = max(enumerate(pred[0]), key=operator.itemgetter(1))

print index # prints the index of max probability
print value # prints the max probability


index, value = max(enumerate(pred[1]), key=operator.itemgetter(1))

print index # prints the index of max probability
print value # prints the max probability

就我而言,我只能指定模型和权重并获得输出,但是,无论我输入什么图像,输出似乎都是相同的(669)。

在 Caffe 存储库中,有一个 script for fetching ImageNet dataset 。它下载并解压的 tarball 包含以下文件:

$ ls -al
total 80395
drwxr-xr-x 1 root 197121 0 Aug 8 14:09 ./
drwxr-xr-x 1 root 197121 0 Aug 7 16:27 ../
-rw-r--r-- 1 root 197121 187 Feb 25 2014 ._imagenet_mean.binaryproto
-rw-r--r-- 1 root 197121 187 Apr 8 2014 ._synset_words.txt
-rw-r--r-- 1 root 197121 187 Feb 25 2014 ._synsets.txt
-rw-r--r-- 1 root 197121 187 Feb 25 2014 ._test.txt
-rw-r--r-- 1 root 197121 187 Feb 25 2014 ._train.txt
-rw-r--r-- 1 root 197121 187 Feb 25 2014 ._val.txt
-rw-r--r-- 1 root 197121 17858008 Aug 8 14:09 caffe_ilsvrc12.tar.gz
-rw-r--r-- 1 root 197121 3787 Jun 8 2014 det_synset_words.txt
-rwxr-xr-x 1 root 197121 610 Aug 8 13:41 get_ilsvrc_aux.sh*
-rw-r--r-- 1 root 197121 14931117 Jul 11 2014 imagenet.bet.pickle
-rw-r--r-- 1 root 197121 786446 Feb 25 2014 imagenet_mean.binaryproto
-rw-r--r-- 1 root 197121 31675 Apr 8 2014 synset_words.txt
-rw-r--r-- 1 root 197121 10000 Feb 25 2014 synsets.txt
-rw-r--r-- 1 root 197121 3200000 Feb 25 2014 test.txt
-rw-r--r-- 1 root 197121 43829433 Feb 25 2014 train.txt
-rw-r--r-- 1 root 197121 1644500 Feb 25 2014 val.txt

我不确定是否还需要使用文件imagenet_mean.binaryprotoimagenet.bet.pickle

有人可以澄清一下吗?

最佳答案

您需要减去图像平均值。

当训练深度模型时,输入通常被归一化为大致平均值 = 0。对于 Caffe 的 AlexNet,图像均值保存在 imagenet_mean.binaryproto 中。

参见this example关于如何使用预训练模型来获得分类结果。

关于python - Caffe 提供的 AlexNet 模型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51758211/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com