x-tabdeveloping / turftopic

Robust and fast topic models with sentence-transformers.
https://x-tabdeveloping.github.io/turftopic/
MIT License
13 stars 4 forks source link

Added FASTopic implementation with Turftopic API #57

Closed x-tabdeveloping closed 1 month ago

x-tabdeveloping commented 1 month ago

FASTopic has been added to the library with minor changes to the original implementation.

pip install turftopic[torch]
from turftopic import FASTopic

model = FASTopic(10)
model.fit(corpus)

model.print_topics()