src/fmeval/transforms/summarization_accuracy_metrics.py [225:247]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ):
        """RougeScore initializer.

        :param target_output_keys: The keys corresponding to target outputs. If this is
            set to None, then we will use `target_output_keys_provider` to get the
            list of target outputs.
        :param model_output_keys: The keys corresponding to model outputs.
        :param output_keys: The output keys for this Transform, which correspond
            to the Rouge scores that get computed.
        :param allow_duplicate_input_keys: Whether to allow duplicate keys in
            `target_output_keys` and `model_output_keys`. This parameter is usually
            False.
        :param target_output_keys_provider: The key corresponding to a list of target
            outputs. Will only be used if `target_output_keys` is set to None.
        :param rouge_type: Which ROUGE type to use (1, 2, L).
        :param use_stemmer: Whether to use a stemmer for ROUGE.
        """
        super().__init__(
            target_output_keys,
            model_output_keys,
            output_keys,
            allow_duplicate_input_keys,
            target_output_keys_provider,
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/fmeval/transforms/summarization_accuracy_metrics.py [289:311]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    ):
        """BertScore initializer.

        :param target_output_keys: The keys corresponding to target outputs. If this is
            set to None, then we will use `target_output_keys_provider` to get the
            list of target outputs.
        :param model_output_keys: The keys corresponding to model outputs.
        :param output_keys: The output keys for this Transform, which correspond
            to the BERT_SCORES that get computed.
        :param allow_duplicate_input_keys: Whether to allow duplicate keys in
            `target_output_keys` and `model_output_keys`. This parameter is usually
            False.
        :param target_output_keys_provider: The key corresponding to a list of target
            outputs. Will only be used if `target_output_keys` is set to None.
        :param bertscore_model: A BertscoreHelperModel instance or a Ray actor handle for a BertscoreHelperModel.
            If no model is provided, the parameter will be set to the default BertscoreHelperModel
        """
        super().__init__(
            target_output_keys,
            model_output_keys,
            output_keys,
            allow_duplicate_input_keys,
            target_output_keys_provider,
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



