Skip to content

Commit

Permalink
fix types
Browse files Browse the repository at this point in the history
  • Loading branch information
mam10eks committed Nov 18, 2024
1 parent 2629b60 commit 449a2ea
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions cli/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -283,6 +283,7 @@ def convert_topics_csv_to_xml(
@option(
"--feedback-index",
default="msmarco-document-v2.1",
type=str,
help="The ChatNoir index from which feedback-documents are labeled.",
)
@option(
Expand All @@ -300,8 +301,8 @@ def convert_topics_csv_to_xml(
def pool_documents(
topics_path: Path,
pooling_path: Path,
retrieval_index: Index,
feedback_index: Index,
retrieval_index: str,
feedback_index: str,
corpus_offset: int,
pooling_depth: int,
) -> None:
Expand Down

0 comments on commit 449a2ea

Please sign in to comment.