# FAQ [![View Source On Gitee](https://mindspore-website.obs.cn-north-4.myhuaweicloud.com/website-images/master/resource/_static/logo_source_en.svg)](https://gitee.com/mindspore/docs/blob/master/docs/mindarmour/docs/source_en/faq.md) **Q: What should I do when FastGradientSignMethod does not specify loss_fn, it reports an error: `Function construct_wrapper, the number of parameters of this function is 9, but the number of provided arguments is 10.`** A: In the `class mindarmour.adv_robustness.attacks.FastGradientSignMethod(network, eps=0.07, alpha=None, bounds=(0.0,1.0), is_targeted=False, loss_fn=None)`, if the incoming `network` is not in the form of `WithLossCell`, you need to specify `Loss_fn`, and the `WithLossCell` operation will be automatically executed by the execution process, otherwise there will be an error that the number of input parameters and the number of parameters required by the function are inconsistent.