diff --git a/python/paddle/trainer_config_helpers/layers.py b/python/paddle/trainer_config_helpers/layers.py index 32287cce6ccaed3ed1c3170a018c76442f7b6d6c..288aebb5b496d307c40658338c84592701658f32 100644 --- a/python/paddle/trainer_config_helpers/layers.py +++ b/python/paddle/trainer_config_helpers/layers.py @@ -7423,18 +7423,25 @@ def factorization_machine(input, Factorization machines. .. code-block:: python - factor_machine = factorization_machine(input=input_layer, factor_size=10) - - :param input: The input layer. + first_order = paddle.layer.fc(input=input, + size=1, + act=paddle.activation.Linear()) + second_order = paddle.layer.factorization_machine(input=input, + factor_size=10) + fm = paddle.layer.addto(input=[first_order, second_order], + act=paddle.activation.Linear(), + bias_attr=False) + + :param input: The input layer. Supported input types: all input data types + on CPU, and only dense input types on GPU. :type input: LayerOutput :param factor_size: The hyperparameter that defines the dimensionality of - the latent vector size + the latent vector size. :type context_len: int :param act: Activation Type. Default is linear activation. :type act: BaseActivation - :param param_attr: The Parameter Attribute. If None, the latent vectors will - be initialized smartly. It's better to set it by - yourself. + :param param_attr: The parameter attribute. See ParameterAttribute for + details. :type param_attr: ParameterAttribute :param layer_attr: Extra Layer config. :type layer_attr: ExtraLayerAttribute|None