Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion opencompass/models/turbomind_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion opencompass/openicl/icl_evaluator/code_evaluator.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down