This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
mindspore.ops.partial
======================
.. py:function:: mindspore.ops.partial(func, *args)
生成偏函数的实例。通过给一般函数的部分参数提供初始值来衍生出有特定功能的新函数。
参数:
- **func** (FunctionType) - 需传入的函数。
- **args** (Tensor) - 传入的函数所对应的参数。
返回:
FunctionType,偏函数及其对应的参数。