├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── NOTICE ├── README.md ├── compute_op.py ├── core.py ├── examples ├── args │ ├── 20news_sklearn_wae │ │ └── mmd.txt │ ├── ag_news_csv │ │ └── mmd.txt │ ├── dbpedia_csv │ │ └── mmd.txt │ ├── lda_synthetic │ │ └── mmd.txt │ ├── nytimes-pbr │ │ └── mmd.txt │ ├── wikitext-103 │ │ └── mmd.txt │ └── yelp_review_polarity_csv │ │ └── mmd.txt ├── domains │ ├── ag_news_wae.py │ ├── dbpedia_wae.py │ ├── lda_synthetic.py │ ├── nyt_wae.py │ ├── twenty_news_sklearn_wae.py │ ├── wikitext103_wae.py │ └── yelp_polarity_wae.py └── gpu0.sh ├── models └── dirichlet.py ├── npmi_calc.py ├── run.py └── utils.py /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/w-lda/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/w-lda/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/w-lda/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- 1 | Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/w-lda/HEAD/README.md -------------------------------------------------------------------------------- /compute_op.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/w-lda/HEAD/compute_op.py -------------------------------------------------------------------------------- /core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/w-lda/HEAD/core.py -------------------------------------------------------------------------------- /examples/args/20news_sklearn_wae/mmd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/w-lda/HEAD/examples/args/20news_sklearn_wae/mmd.txt -------------------------------------------------------------------------------- /examples/args/ag_news_csv/mmd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/w-lda/HEAD/examples/args/ag_news_csv/mmd.txt -------------------------------------------------------------------------------- /examples/args/dbpedia_csv/mmd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/w-lda/HEAD/examples/args/dbpedia_csv/mmd.txt -------------------------------------------------------------------------------- /examples/args/lda_synthetic/mmd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/w-lda/HEAD/examples/args/lda_synthetic/mmd.txt -------------------------------------------------------------------------------- /examples/args/nytimes-pbr/mmd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/w-lda/HEAD/examples/args/nytimes-pbr/mmd.txt -------------------------------------------------------------------------------- /examples/args/wikitext-103/mmd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/w-lda/HEAD/examples/args/wikitext-103/mmd.txt -------------------------------------------------------------------------------- /examples/args/yelp_review_polarity_csv/mmd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/w-lda/HEAD/examples/args/yelp_review_polarity_csv/mmd.txt -------------------------------------------------------------------------------- /examples/domains/ag_news_wae.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/w-lda/HEAD/examples/domains/ag_news_wae.py -------------------------------------------------------------------------------- /examples/domains/dbpedia_wae.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/w-lda/HEAD/examples/domains/dbpedia_wae.py -------------------------------------------------------------------------------- /examples/domains/lda_synthetic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/w-lda/HEAD/examples/domains/lda_synthetic.py -------------------------------------------------------------------------------- /examples/domains/nyt_wae.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/w-lda/HEAD/examples/domains/nyt_wae.py -------------------------------------------------------------------------------- /examples/domains/twenty_news_sklearn_wae.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/w-lda/HEAD/examples/domains/twenty_news_sklearn_wae.py -------------------------------------------------------------------------------- /examples/domains/wikitext103_wae.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/w-lda/HEAD/examples/domains/wikitext103_wae.py -------------------------------------------------------------------------------- /examples/domains/yelp_polarity_wae.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/w-lda/HEAD/examples/domains/yelp_polarity_wae.py -------------------------------------------------------------------------------- /examples/gpu0.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/w-lda/HEAD/examples/gpu0.sh -------------------------------------------------------------------------------- /models/dirichlet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/w-lda/HEAD/models/dirichlet.py -------------------------------------------------------------------------------- /npmi_calc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/w-lda/HEAD/npmi_calc.py -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/w-lda/HEAD/run.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awslabs/w-lda/HEAD/utils.py --------------------------------------------------------------------------------