gpt4 book ai didi

c++ - 范恩错误 1 ​​: unable to open file

转载 作者:行者123 更新时间:2023-11-28 08:22:07 25 4
gpt4 key购买 nike

我正在尝试这段代码,但出现错误,我无法解决这个问题!

有人知道吗?

#include<iostream>
using namespace std;
#include <cv.h>
#include <highgui.h>
#include <fann.h>
#include <fann_cpp.h>
#include <floatfann.h>
int main()
{

const float connection_rate = 1;
const float learning_rate = 0.7;
const unsigned int num_layers = 3;
const unsigned int num_input = 2;
const unsigned int num_neurons_hidden = 4;
const unsigned int num_output = 1;
const float desired_error = 0.0001;
const unsigned int max_epochs = 500000;
const unsigned int epochs_between_reports = 1000;
FANN::neural_net ann;
ann.create_standard(num_layers,num_input, num_neurons_hidden, num_output,connection_rate,learning_rate);
ann.train_on_file("C:\\xor.data", max_epochs,epochs_between_reports, desired_error);
ann.save("C:\\xor_float.net");
ann.destroy();
return 0;
}

异或数据:

4 2 1

0 0

0

0 1

1

1 0

1

1 1

0

错误是:FANN 错误 1:无法打开配置文件“C:\xor.data”进行读取。

谢谢。

最佳答案

Maha,这里有一个 main 例程,其中包含六个自定义 header (我们看不到)和两个涉及文件名的调用(我们看不到)。如果答案不明显,例如该文件不存在,然后简化

我敢打赌这五个 header 中有四个是不必要的;删除它们。打开 train_on_file_ 方法并将其剔除,删除除打开文件和读取一两个值的行以外的所有内容。逐步执行此操作,在每个步骤中测试错误。要么

  1. 错误将消失(您刚刚删除的部分导致了问题),
  2. 错误会变得很明显,或者
  3. 您将着手解决一些小问题,这些小问题应该有效但无效,然后您可以将其完整地发布

关于c++ - 范恩错误 1 ​​: unable to open file,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5431864/

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