美文网首页
【ML】Neural Network Verification

【ML】Neural Network Verification

作者: 盐果儿 | 来源:发表于2022-08-16 01:35 被阅读0次

Deep Neural Network(DNN) verification is a process of verifying whether, for every possible input, the neural network output satisfies the desired properties. Simply put, it's checking for relations between the neural network input and ouput to see whether the specific properties between them of interest hold. 

Using the notations of the above illustration, assume X is the input set (the set of all possible inputs the neural net can receive), Y the output set (the set of outputs desired), and f the function that represents the composite of all the operations that goes on in the hidden layers.

\forall x \in X \Rightarrow f(X) = y \in Y

Then, the verification process is simply proving the above assertion holds.

Reference:

https://medium.com/sw-verification-testing/what-is-deep-neural-network-verification-and-why-is-it-important-75281738f5db

相关文章

网友评论

      本文标题:【ML】Neural Network Verification

      本文链接:https://www.haomeiwen.com/subject/hsllgrtx.html