(self)
| 27 | self.config = config |
| 28 | |
| 29 | def __repr__(self) -> str: |
| 30 | return f"TopicModel(config={self.config})" |
| 31 | |
| 32 | def fit_topic_model(self, topic_model, data, embeddings, key="query"): |
| 33 | topics, probs = topic_model.fit_transform(data[key].to_list(), embeddings) |
nothing calls this directly
no outgoing calls
no test coverage detected