Skip to content

Commit

Permalink
Update src/phoenix/pcloud/projectors.py
Browse files Browse the repository at this point in the history
Co-authored-by: Mikyo King <mikyo@arize.com>
  • Loading branch information
Francisco Castillo and mikeldking committed Nov 23, 2022
1 parent e29c344 commit 0970ab3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/phoenix/pcloud/projectors.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def project(self, primary_dataset: Dataset, reference_dataset: Dataset, embeddin
# Sample down our datasets to max 2500 rows for UMAP performance
points_per_dataset = MAX_UMAP_POINTS // 2
sampled_primary_dataset = primary_dataset.sample(
num=MAX_UMAP_POINTS // 2,
num=points_per_dataset
)
sampled_reference_dataset = reference_dataset.sample(num=MAX_UMAP_POINTS // 2)

Expand Down

0 comments on commit 0970ab3

Please sign in to comment.