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.
根据微软的说法,CNTK 包括自动微分。为了更好地理解源代码(我已经成功构建),我想知道哪些 C++ 类实现了 AD 以及它是如何在 CNTK 中实现的?
CNTK 类Function实现了 AD(准确地说是通过Gradients方法)。神经网络表示为多个Function组合,如g(f(x))。然后函数g的导数相对于f计算如下:
Function