Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request introduces a new neural topic model, updates documentation, and makes several improvements to the codebase. The most important changes include adding the NSTM model, updating the README and documentation, and modifying the preprocessing steps.
New Model Addition
NSTM
(Neural Topic Model via Optimal Transport) implementation instream_topic/models/neural_base_models/nstm_base.py
.NSTM
in the__init__.py
file for models. [1] [2]Documentation Updates
README.md
to include a new GIF and remove outdated images. [1] [2]NSTM
to thedocs/api/models/models.rst
file.Python (stream_topic_venv)
. [1] [2]Preprocessing and Configuration Changes
NSTM
indefault_preprocessing_steps.json
.octis
corpus with thebrown
corpus in the topic extraction module. [1] [2] [3] [4] [5]Version and Dependency Updates
0.1.9
in__version__.py
.octis
dependency fromdocs/conf.py
.Other Code Changes
sinkhorn_loss
function tostream_topic/utils/sinkhorn_loss.py
.expansion_corpus
fromoctis
tobrown
in theCEDC
model. [1] [2]