Beginner on ANNs:
我正在实施一项反向传播的神经网络,以预测黄金的价格。 我知道,我必须将我的数据分为培训数据、甄选数据和测试数据。
然而,我没有保证 如何利用这些数据集。 首先,我对数据网络进行了培训,然后在培训之后,我从测试组获得一些投入,并对产出进行比较。
我不敢肯定我是否行使这一权利,所选择的人选是否在进行?
页: 1
Beginner on ANNs:
我正在实施一项反向传播的神经网络,以预测黄金的价格。 我知道,我必须将我的数据分为培训数据、甄选数据和测试数据。
然而,我没有保证 如何利用这些数据集。 首先,我对数据网络进行了培训,然后在培训之后,我从测试组获得一些投入,并对产出进行比较。
我不敢肯定我是否行使这一权利,所选择的人选是否在进行?
页: 1
总体设想是:
这样,你就可以知道何时停止培训。
一个容易的修改是,始终追踪迄今为止所看到的最佳网络,我们只是在看到一些培训尝试(例如,三个)在一行中更加恶化的时候停止培训。
第三组测试组是必要的,因为甄选组如果间接地参与培训过程。 必须最后评价培训期间根本没有使用的数据。
这类事情足以进行简单的试验,但总的来说,你想要使用,以便更好地了解你的系统业绩。
我只想发表一点意见,即验证套是依赖模型的超参数重估的良好场所,但我在这里是新鲜的,因此没有声望。 为使这一职位更值得单独张贴,我已概述了我自己的培训考试过程。 实际上,我的工作流程如下:
Is a Neural network with 2 input nodes, 2 hidden nodes and an output supposed to be able to solve the XOR problem provided there is no bias? Or can it get stuck?
I have a couple of questions about how to code the backpropagation algorithm of neural networks: The topology of my networks is an input layer, hidden layer and output layer. Both the hidden layer ...
I m trying to determine for the articial neuron shown below the values (0 or 1) for the inputs i1, i2, and i3 for which it will fire (i0 is the input for the bias weight and will always be -1). The ...
What is the best programming language for artificial intelligence purposes? Mind that using suggested language I must be able to employ any AI technique (or at least most of them).
from your experience, which is the most effective approach to implement artificial neural networks prototypes? It is a lot of hype about R (free, but I didn t work with it) or Matlab (not free), ...
I m having a problem trying to understand how does AIML pattern matching works. What s the difference between _ and *? And how I should use them to get the best match? I have this document only, ...
How can I set Neural Networks so they accept and output a continuous range of values instead of a discrete ones? From what I recall from doing a Neural Network class a couple of years ago, the ...
I am playing with some neural network simulations. I d like to get two neural networks sharing the input and output nodes (with other nodes being distinct and part of two different routes) to compete. ...