Continuous vs Discrete artificial neural networks

后端 未结 5 1009
再見小時候
再見小時候 2021-02-02 16:15

I realize that this is probably a very niche question, but has anyone had experience with working with continuous neural networks? I\'m specifically interested in what a continu

5条回答
  •  离开以前
    2021-02-02 16:39

    Feed forward neural networks are always "continuous" -- it's the only way that backpropagation learning actually works (you can't backpropagate through a discrete/step function because it's non-differentiable at the bias threshold).

    You might have a discrete (e.g. "one-hot") encoding of the input or target output, but all of the computation is continuous-valued. The output may be constrained (i.e. with a softmax output layer such that the outputs always sum to one, as is common in a classification setting) but again, still continuous.

    If you mean a network that predicts a continuous, unconstrained target -- think of any prediction problem where the "correct answer" isn't discrete, and a linear regression model won't suffice. Recurrent neural networks have at various times been a fashionable method for various financial prediction applications, for example.

提交回复
热议问题