Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ethanhezhao/MetaLDA
The code for MetaLDA in ICDM 2017
https://github.com/ethanhezhao/MetaLDA
document-analysis icdm java machine-learning mallet metadata topic-modeling
Last synced: 3 months ago
JSON representation
The code for MetaLDA in ICDM 2017
- Host: GitHub
- URL: https://github.com/ethanhezhao/MetaLDA
- Owner: ethanhezhao
- License: mit
- Created: 2017-08-18T05:00:27.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-02-06T02:45:18.000Z (almost 6 years ago)
- Last Synced: 2024-04-09T03:04:29.267Z (7 months ago)
- Topics: document-analysis, icdm, java, machine-learning, mallet, metadata, topic-modeling
- Language: Java
- Homepage:
- Size: 2.86 MB
- Stars: 7
- Watchers: 5
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-topic-models - MetaLDA - Java implementation using Gibbs sampling that leverages document metadata and word embeddings [:page_facing_up:](https://arxiv.org/pdf/1709.06365.pdf) (Models / Embedding based Topic Models)
README
# MetaLDA
MetaLDA is a topic model that leverages either document or word meta information, or both of them jointly [1].Key features:
1. Incorporates both document and word meta information in binary format
2. Implemented on top of [Mallet](http://mallet.cs.umass.edu) in JAVA
- Works with Mallet input format
- Runs efficiently (bit-coding and SparseLDA framework apply)
- Runs with multi-threads (DistributedLDA framework applies)# Run MetaLDA
1. Requirements: JDK 1.8 or later and [Maven](https://maven.apache.org/what-is-maven.html). Other dependencies will be downloaded by Maven.
2. Clone the repository or download the code
3. Compile the code with Maven
- ```cd ```
- ```mvn package```
4. Prepare documents
- All documents (training/testing) are in Mallet's [LabeledLDA](http://www.mimno.org/articles/labelsandpatterns/) format.
- If the input documents are already in Mallet, they can be directly fed into the model.
- Otherwise, the documents have to be first converted into Mallet format.
- Each raw document should in the following format:
```DOC_ID\tLABEL1\sLABEL2\sLABEL3\tWORD1\sWORD2\sWORD3\n```.
- Install [Mallet](http://mallet.cs.umass.edu) then use:
```/bin/mallet import-file --input --output --label-as-features --keep-sequence --line-regex '([^\t]+)\t([^\t]+)\t(.*)'```
5. Prepare word features
- MetaLDA uses the following sparse representation of binary word features:
```WORD\tNNZ_INDEX1\sNNZ_INDEX2\sNNZ_INDEX3```
- Use embeddings as word features
- MetaLDA offers a function to binarise and convert word embeddings into the required word feature format. The raw input word embeddings are expected to follow the format of [GloVe](https://nlp.stanford.edu/projects/glove/):
```WORD\sEMBEDDING1\sEMBEDDING2\sEMBEDDING3```
- To binarise and convert the raw word embeddings, in the root folder of MetaLDA, use:
```java -cp ./target/metalda-0.1-jar-with-dependencies.jar topicmodels.BinariseWordEmbeddings --train-docs --test-docs --input --output ```
- The function first reads the vocabularies of the training and testing documents (both in Mallet format) and then binarise the embeddings of the words in the vocabularies stored in the word embedding file, and finally saves the binarised embeddings into the required format. Note that MetaLDA does not require all the words in the training and testing documents have embeddings.
6. Train MetaLDA
```java -cp ./target/metalda-0.1-jar-with-dependencies.jar topicmodels.MetaLDATrain --train-docs --num-topics --word-features --save-folder --sample-alpha-method --sample-beta-method ```
- ``````:
- 0: fixed on initial value
- 1: alpha is a full matrix sampled with doc labels
- 2: alpha is sampled as an asymmetric vector over topic
- 3: alpha is sampled as a single value
- ``````:
- 0: fixed on initial value
- 1: beta is a full matrix sampled with word features
- 2: beta is sampled as an asymmetric vector over topics
- 3: beta is sampled as a single value
- For details of the arguments, use:
```java -cp ./target/metalda-0.1-jar-with-dependencies.jar topicmodels.MetaLDATrain --help```
7. Access the saved files in the training phrase
In the training phrase, MetaLDA saves the following files in the ``````:
- top_words.txt:
the top 50 words with the largest weights (phi) in each topic (the number of top words can be changed)
- train_alphabet.txt:
the vocabulary of the training documents, the order of the words matches the index of phi.
- train_target_alphabet.txt:
the vocabulary of the labels in the training documents, the order of the labels matches the index of lambda
- train_stats.mat:
a [MAT-file](https://au.mathworks.com/help/matlab/matlab_env/save-load-and-delete-workspace-variables.html) of Matlab that saves the training statistics. [matfilerw](https://github.com/diffplug/matfilerw) for JAVA and [FileIO of Scipy](https://docs.scipy.org/doc/scipy/reference/tutorial/io.html) for Python are good tools to access MAT-files. Note that Matlab installation is not required although Matlab can directly load MAT-files.
8. Inference on the testing documents
MetaLDA offers two kinds of inference:
- Ignore the words that exist in the testing documents but not in the training documents
```java -cp ./target/metalda-0.1-jar-with-dependencies.jar topicmodels.MetaLDAInfer --test-docs --save-folder --compute-perplexity true```
- ``````: same to the folder where the files are saved in the training phrase
- ```--compute-perplexity```
- true: MetaLDA will use one half of each testing document (every first words) to sample its document-topic distribution (theta) and the other half (every second words) to compute perplexity.
- false: MetaLDA will use all the content of each testing document to sample its document-topic distribution (theta). Perplexity will not be computed.
- Consider the words that exist in the testing documents but not in the training documents
```java -cp ./target/metalda-0.1-jar-with-dependencies.jar topicmodels.MetaLDAInferUnseen --test-docs --save-folder --compute-perplexity true --word-features ```
9. Access the saved files in the inference phrase
- If ```MetaLDAInfer``` is used, MetaLDA will save the testing statistics into 'test_stats.mat' in ``````
- If ```MetaLDAInferUnseen``` is used, MetaLDA will save the testing statistics into 'test_stats_unseen.mat' in ``````# Demo
To wrap up the above steps, a demo bash script is offered. To run the demo, simply go to the ```demo``` folder and run ```./demo.sh```.
For the demo, the WS dataset used in the paper is included.# References
[1] H. Zhao, L. Du, W. Buntine, G. Liu, "MetaLDA: a Topic Model that Efficiently Incorporates Meta information", _International Conference on Data Mining (ICDM)_ 2017. [Arxiv](https://arxiv.org/abs/1709.06365)If you find any bugs, please contact [email protected].