Is there any model or method to do topic modelling/discovery? #2743
asharm0662
started this conversation in
General
Replies: 1 comment 1 reply
-
Hi @asharm0662 not directly topic modeling but maybe still helpful for your use case is zero-shot classification of documents. Have a look here: You could use zero shot classification models to group your documents by classes. Apart from that, you could use an EmbeddingRetriever to calculate an embedding for every document in your document store. After that you could manually loop through all the documents and cluster them by their embeddings. The downside is that the clusters (topics) won't have any label -- just as with any other topic modeling approach, which is why I would recommend the zero-shot classification. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
Is there model or method I can be referred to within haystack that allows topic modelling/discovery?
What I mean by topic modelling/discovery:
Thank you in advance.
Beta Was this translation helpful? Give feedback.
All reactions