Skip to content

Commit

Permalink
Whoops fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jacketsj committed Oct 10, 2024
1 parent 82672fa commit 33b5cc5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions python/python/lance/dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -1505,9 +1505,9 @@ def create_index(
Extra options that make sense for a particular storage connection. This is
used to store connection parameters like credentials, endpoint, etc.
filter_nan: bool
Defaults to True. False is UNSAFE, and will cause a crash if any null/nan values
are present (and otherwise will not). Disables the null filter used for nullable
columns. Obtains a small speed boost.
Defaults to True. False is UNSAFE, and will cause a crash if any null/nan
values are present (and otherwise will not). Disables the null filter used
for nullable columns. Obtains a small speed boost.
kwargs :
Parameters passed to the index building process.
Expand Down
2 changes: 1 addition & 1 deletion python/python/lance/vector.py
Original file line number Diff line number Diff line change
Expand Up @@ -456,7 +456,7 @@ def compute_partitions(
batch_size=batch_size,
with_row_id=True,
columns=[column],
filter=null_filter,
filter=filt,
)
loader = torch.utils.data.DataLoader(
torch_ds,
Expand Down

0 comments on commit 33b5cc5

Please sign in to comment.