diff --git a/opencompass/datasets/SciReasoner/Mol_Instructions/normalized_SW_score.py b/opencompass/datasets/SciReasoner/Mol_Instructions/normalized_SW_score.py index f35fd654a..58492e46f 100644 --- a/opencompass/datasets/SciReasoner/Mol_Instructions/normalized_SW_score.py +++ b/opencompass/datasets/SciReasoner/Mol_Instructions/normalized_SW_score.py @@ -11,7 +11,7 @@ def normalized_smith_waterman(seq1, Args: seq1, seq2 (str): Protein sequences (uppercase letters) - matrix_name (str): Name of substitution matrix (default: BLOSUM62) + matrix_name (str): Name of substitution matrix (default: BLOSUM45) open_gap (float): Gap opening penalty extend_gap (float): Gap extension penalty diff --git a/opencompass/models/turbomind_api.py b/opencompass/models/turbomind_api.py index c211cbe61..e3ddff64d 100644 --- a/opencompass/models/turbomind_api.py +++ b/opencompass/models/turbomind_api.py @@ -100,7 +100,7 @@ def generate( temperature (float): What sampling temperature to use, between 0 and 2. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more - focused and deterministic. Defaults to 0.7. + focused and deterministic. Defaults to 1.0. end_str (str, optional): Whether to trim generated strings with end_str if the model has special ending strings that are not handled well. diff --git a/opencompass/openicl/icl_evaluator/code_evaluator.py b/opencompass/openicl/icl_evaluator/code_evaluator.py index a28042071..1b23b3332 100644 --- a/opencompass/openicl/icl_evaluator/code_evaluator.py +++ b/opencompass/openicl/icl_evaluator/code_evaluator.py @@ -32,7 +32,7 @@ def __init__(self, Args: language (str): Programming language of the code to evaluate. ip_address (str, optional): IP address of the evaluation service. Defaults to 'localhost'. - retry (int, optional): Number of retry attempts for failed connections. Defaults to 3. + retry (int, optional): Number of retry attempts for failed connections. Defaults to 5. """ self.language = language self.retry = retry