williamlhy

Results 3 issues of williamlhy

1. Added additional Chinese corpus to the CEDC model 2. Made minor modifications to other models to adapt to Chinese datasets

**When I wanted to use TNTM model, I got the following error.** Code: ``` from stream_topic.models import TNTM from stream_topic.utils import TMDataset dataset = TMDataset() dataset.fetch_dataset("BBC_News") dataset.preprocess(model_type="TNTM") model = TNTM()...

**When I wanted to use DCTE model (here I used local model):** ``` from stream_topic.models import DCTE from stream_topic.utils import TMDataset dataset = TMDataset() dataset.fetch_dataset(name="BBC_News",dataset_path = "/hongyi/STREAM/stream_topic/stream_topic_data/preprocessed_datasets/BBC_News",source = 'local') dataset.preprocess(model_type="DCTE")...