Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
最近,我开始阅读有关深度学习的内容。主要是使用无监督 RBM 网络对权重进行预训练,然后使用具有许多隐藏层的神经网络来解决他们的任务。所以我的问题是,我们是否可以将 DNN 用于 2 类分类问题。感谢那些将要回应的人。
是的,您可以在隐藏层之上通过简单的逻辑回归来做到这一点(无论您为此选择什么,RBM 都是其他自动编码器)。
绝对没错!
正如 Thomas 所提到的,您可以在输出层时使用逻辑回归。此外,另一种方法是您可以使用具有两个类的 Sotmax 层作为输出层。
祝你好运!