mxfusion.components.functions.gluon_func_eval

Members

class mxfusion.components.functions.gluon_func_eval.GluonFunctionEvaluation(func, input_variables, output_variables, broadcastable=False)

Bases: mxfusion.components.functions.function_evaluation.FunctionEvaluationWithParameters

The evaluation of a function that is a wrapper of a MXNet Gluon block.

Parameters:
  • func (MXFusion.components.functions.MXFusionGluonFunction) – the MXFusion wrapper of the MXNet Gluon block that the function evaluation is associated with.
  • input_variables ({str : Variable}) – the input arguments to the function.
  • output_variables ({str : Variable}) – the output variables of the function.
  • broadcastable – Whether the function supports broadcasting with the additional dimension for samples.
Type:

boolean