├── README.md ├── data ├── R52_LDA.p ├── R52_corpus.txt ├── R52_labels.txt ├── R8_LDA.p ├── R8_corpus.txt └── R8_labels.txt ├── generate_lda.py ├── hypergat.png ├── layers.py ├── model.py ├── preprocess.py ├── run.py └── utils.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaize0409/HyperGAT_TextClassification/HEAD/README.md -------------------------------------------------------------------------------- /data/R52_LDA.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaize0409/HyperGAT_TextClassification/HEAD/data/R52_LDA.p -------------------------------------------------------------------------------- /data/R52_corpus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaize0409/HyperGAT_TextClassification/HEAD/data/R52_corpus.txt -------------------------------------------------------------------------------- /data/R52_labels.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaize0409/HyperGAT_TextClassification/HEAD/data/R52_labels.txt -------------------------------------------------------------------------------- /data/R8_LDA.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaize0409/HyperGAT_TextClassification/HEAD/data/R8_LDA.p -------------------------------------------------------------------------------- /data/R8_corpus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaize0409/HyperGAT_TextClassification/HEAD/data/R8_corpus.txt -------------------------------------------------------------------------------- /data/R8_labels.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaize0409/HyperGAT_TextClassification/HEAD/data/R8_labels.txt -------------------------------------------------------------------------------- /generate_lda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaize0409/HyperGAT_TextClassification/HEAD/generate_lda.py -------------------------------------------------------------------------------- /hypergat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaize0409/HyperGAT_TextClassification/HEAD/hypergat.png -------------------------------------------------------------------------------- /layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaize0409/HyperGAT_TextClassification/HEAD/layers.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaize0409/HyperGAT_TextClassification/HEAD/model.py -------------------------------------------------------------------------------- /preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaize0409/HyperGAT_TextClassification/HEAD/preprocess.py -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaize0409/HyperGAT_TextClassification/HEAD/run.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaize0409/HyperGAT_TextClassification/HEAD/utils.py --------------------------------------------------------------------------------