I tried to run the ETM model through OCTIS, but got an attribute error.
I've attached my corpus (corpus.csv; for some reason git won't let my attach an actual .tsv file) and vocabulary (vocabulary.txt) for your convenience.
What I Did
Here's what I did
I complied with the format of the dataset as a .tsv and vocabulary as a .txt file with one stem per row.
I was able to load the dataset with no errors.
To run the model I did the following:
from octis.models.ETM import ETM
model_etm = ETM(num_topics=40)
output_fomc = model_etm.train_model(dataset)
Description
I tried to run the ETM model through OCTIS, but got an attribute error. I've attached my corpus (corpus.csv; for some reason git won't let my attach an actual .tsv file) and vocabulary (vocabulary.txt) for your convenience.
What I Did
Here's what I did
I complied with the format of the dataset as a .tsv and vocabulary as a .txt file with one stem per row.
I was able to load the dataset with no errors.
To run the model I did the following:
from octis.models.ETM import ETM model_etm = ETM(num_topics=40) output_fomc = model_etm.train_model(dataset)