Skip to content

Commit

Permalink
tmp: comment out precision arg
Browse files Browse the repository at this point in the history
  • Loading branch information
bclavie committed Feb 15, 2024
1 parent 0106580 commit 92d99d6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ragatouille/models/colbert.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
from colbert import Indexer, IndexUpdater, Searcher, Trainer
from colbert.infra import ColBERTConfig, Run, RunConfig
from colbert.modeling.checkpoint import Checkpoint

from ragatouille.models.base import LateInteractionModel

# TODO: Move all bsize related calcs to `_set_bsize()`
Expand Down Expand Up @@ -485,7 +484,8 @@ def index(
documents=None,
max_tokens=max_document_length,
)
self._full_vectors_index(half_precision=full_vector_half_precision)
self._full_vectors_index()
# half_precision=full_vector_half_precision)
elif self.index_type == "PLAID":
self._plaid_index(overwrite=overwrite)

Expand Down

0 comments on commit 92d99d6

Please sign in to comment.