Spaces:
Running
on
Zero
Running
on
Zero
Toggle use_medoids parameter in prediction function to False for testing purposes.
Browse files
app.py
CHANGED
@@ -493,7 +493,7 @@ def predict(request: gr.Request, text_input, sample_size_slider, reduce_sample_c
|
|
493 |
|
494 |
hover_text=[str(row['title']) for ix, row in stacked_df.iterrows()],
|
495 |
marker_color_array=stacked_df['color'],
|
496 |
-
use_medoids=
|
497 |
width=1000,
|
498 |
height=1000,
|
499 |
point_radius_min_pixels=1,
|
|
|
493 |
|
494 |
hover_text=[str(row['title']) for ix, row in stacked_df.iterrows()],
|
495 |
marker_color_array=stacked_df['color'],
|
496 |
+
use_medoids=False, # Switch back once efficient mediod caclulation comes out!
|
497 |
width=1000,
|
498 |
height=1000,
|
499 |
point_radius_min_pixels=1,
|