Skip to content

Commit 0226673

Browse files
Merge branch 'main' into dynamic_keynmf
2 parents eea1428 + 0ec180e commit 0226673

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@
1212
- Make the models' API streamlined and compatible with topicwizard and scikit-learn.
1313
- Develop smarter, transformer-based evaluation metrics.
1414

15-
!!!This package is still a prototype, and no papers are published about the models. Until these are out, and most features are implemented
16-
I DO NOT recommend using this package for production and academic use!!!
15+
**Note**: This package is still work in progress and scientific papers on some of the novel methods (e.g., decomposition-based methods) are currently undergoing peer-review. If you use this package and you encounter any problem, let us know by opening relevant issues.
1716

1817
## Roadmap
1918
- [x] Model Implementation

turftopic/base.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -217,6 +217,7 @@ def _representative_docs(
217217
lowest = lowest[
218218
np.argsort(document_topic_matrix[lowest, topic_id])
219219
]
220+
lowest = lowest[::-1]
220221
scores = document_topic_matrix[lowest, topic_id]
221222
for document_id, score in zip(lowest, scores):
222223
doc = raw_documents[document_id]

0 commit comments

Comments
 (0)