|
|
|
|
|
by hack_ml
1498 days ago
|
|
Its seamless to accelerate BERTOPIC on GPU's with cuML now with the latest release. (v0.10.0) Checkout the docs at:
https://maartengr.github.io/BERTopic/faq.html#can-i-use-the-... All you need to do is below from bertopic import BERTopic
from cuml.cluster import HDBSCAN
from cuml.manifold import UMAP
# Create instances of GPU-accelerated UMAP and HDBSCAN
umap_model = UMAP(n_components=5, n_neighbors=15, min_dist=0.0)
hdbscan_model = HDBSCAN(min_samples=10, gen_min_span_tree=True)
# Pass the above models to be used in BERTopic
topic_model = BERTopic(umap_model=umap_model, hdbscan_model=hdbscan_model)
topics, probs = topic_model.fit_transform(docs)
|
|