gpt4 book ai didi

c++ - 使用来自 C++ 的训练有素的咖啡网的错误结果

转载 作者:搜寻专家 更新时间:2023-10-31 02:15:24 25 4
gpt4 key购买 nike

我尝试将经过训练的 caffe net 与来自 C++ 的数据结合使用。我为部署实现了标准 caffe 示例 classification.cpp。在使用 python 脚本的训练/测试阶段,网络达到了 accuracy = 0.93,但现在当我去部署时,我得到了一些奇怪的结果。我有两个类(class):

  • 环境
  • 对象

我需要获得对象检测的概率。我相信如果网络在 FC 层有两个输出 (prob1 + prob2 == 1.0f),结果将以 Softmax 输出 blob 中两个概率的形式呈现,但结果令人费解.在输出 vector 中,我为每个图像得到两个相同的值。以下是输入层和输出层:

layer {
name: "data"
top: "data"
type: "Input"
input_param { shape: { dim: 1 dim: 3 dim: 227 dim: 227 }}
}
layer {
name: "fc6"
top: "fc6"
type: "InnerProduct"
bottom: "drop5"
inner_product_param {
num_output: 2
weight_filler {
type: "xavier"
std: 0.1
}
}
}
layer {
name: "prob"
top: "prob"
type: "Softmax"
bottom: "fc6"
}

我的常规 C++ 代码示例:

Blob<float>* input_layer = m_net->input_blobs()[0];
input_layer->Reshape(1, m_numChannels, m_inputGeometry.height, m_inputGeometry.width);
m_net->Reshape();
std::vector<cv::Mat> input_channels;
Blob<float>* input_layer = m_net->input_blobs()[0];
int width = input_layer->width();
int height = input_layer->height();
float* input_data = input_layer->mutable_cpu_data();

for(int i = 0; i < input_layer->channels(); ++i){
cv::Mat channel(height, width, CV_32FC1, input_data);
input_channels->push_back(channel);
input_data += width * height;
}

cv::split(image_float, *input_channels);
m_net->Forward();
Blob<float>* output_layer = m_net->output_blobs()[0];
const float* begin = output_layer->cpu_data();
const float* end = begin + output_layer->channels();
QVector<float> output = QVector<float>(end - begin, *begin);

此外,结果类似于随机(并且为每个类复制),最小概率值为 magic 0.443142。该值通常出现在输出 vector 中。我做错了什么?

最佳答案

所以,这个问题超出了主题的范围。这是关于 STL 和 Qt vector 之间的区别。原始代码

std::vector<float> output(begin, end);

代替

QVector<float> output(end - begin, *begin);

解决问题。

关于c++ - 使用来自 C++ 的训练有素的咖啡网的错误结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38529902/

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