You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Just attempting to follow along on the NB example and received the error, seemingly not recognizing the hdbscan parameter dictionary. Seems odd because I see it available in the latest release so unsure if it was a "me" problem or not.
Cheers!
SEED = 42
np.random.seed(SEED) # set the random seed as best we can
hdbscan_parameters = {"cluster_selection_method": "leaf"}
clf = DenseClus(
random_state=SEED,
umap_combine_method="intersection_union_mapper",
hdbscan_params=hdbscan_parameters,
)
clf.fit(test_df)
print(sys.version) -- python 3.12.3 (main, Apr 9 2024, 16:54:45)
amazon-denseclus in /Users/porygon/.venv/lib/python3.12/site-packages (0.0.9)
The text was updated successfully, but these errors were encountered:
Hello! New to the module but super impressed!
Just attempting to follow along on the NB example and received the error, seemingly not recognizing the hdbscan parameter dictionary. Seems odd because I see it available in the latest release so unsure if it was a "me" problem or not.
Cheers!
The text was updated successfully, but these errors were encountered: