Skip to content

Commit

Permalink
lower context_num to 1
Browse files Browse the repository at this point in the history
  • Loading branch information
RLKRo committed Oct 31, 2024
1 parent dd12937 commit 853bd7c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion chatsky/utils/db_benchmark/basic_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ class BasicBenchmarkConfig(BenchmarkConfig, frozen=True):
Dialog length is configured using `from_dialog_len`, `to_dialog_len`, `step_dialog_len`.
"""

context_num: int = 3
context_num: int = 1
"""
Number of times the contexts will be benchmarked.
Increasing this number decreases standard error of the mean for benchmarked data.
Expand Down
2 changes: 1 addition & 1 deletion chatsky/utils/db_benchmark/benchmark.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ class BenchmarkConfig(BaseModel, abc.ABC, frozen=True):
Inherit from this class only if `BasicBenchmarkConfig` is not enough for your benchmarking needs.
"""

context_num: int = 3
context_num: int = 1
"""
Number of times the contexts will be benchmarked.
Increasing this number decreases standard error of the mean for benchmarked data.
Expand Down

0 comments on commit 853bd7c

Please sign in to comment.