├── README.md ├── benchmarks ├── Classification_ACC.m ├── Clustering_ACC_NMI.m ├── MutualInfo.m ├── bestMap.m ├── hungarian.m ├── normalize.m ├── predict.mexw64 ├── svmpredict.mexw64 ├── svmtrain.mexw64 ├── tf_idf.m └── train.mexw64 ├── matlab_format └── StackOverflow.mat └── rawText ├── label_StackOverflow.txt ├── title_StackOverflow.txt ├── vocab_emb_Word2vec_48.vec ├── vocab_emb_Word2vec_48_index.dic └── vocab_withIdx.dic /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacoxu/StackOverflow/HEAD/README.md -------------------------------------------------------------------------------- /benchmarks/Classification_ACC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacoxu/StackOverflow/HEAD/benchmarks/Classification_ACC.m -------------------------------------------------------------------------------- /benchmarks/Clustering_ACC_NMI.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacoxu/StackOverflow/HEAD/benchmarks/Clustering_ACC_NMI.m -------------------------------------------------------------------------------- /benchmarks/MutualInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacoxu/StackOverflow/HEAD/benchmarks/MutualInfo.m -------------------------------------------------------------------------------- /benchmarks/bestMap.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacoxu/StackOverflow/HEAD/benchmarks/bestMap.m -------------------------------------------------------------------------------- /benchmarks/hungarian.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacoxu/StackOverflow/HEAD/benchmarks/hungarian.m -------------------------------------------------------------------------------- /benchmarks/normalize.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacoxu/StackOverflow/HEAD/benchmarks/normalize.m -------------------------------------------------------------------------------- /benchmarks/predict.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacoxu/StackOverflow/HEAD/benchmarks/predict.mexw64 -------------------------------------------------------------------------------- /benchmarks/svmpredict.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacoxu/StackOverflow/HEAD/benchmarks/svmpredict.mexw64 -------------------------------------------------------------------------------- /benchmarks/svmtrain.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacoxu/StackOverflow/HEAD/benchmarks/svmtrain.mexw64 -------------------------------------------------------------------------------- /benchmarks/tf_idf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacoxu/StackOverflow/HEAD/benchmarks/tf_idf.m -------------------------------------------------------------------------------- /benchmarks/train.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacoxu/StackOverflow/HEAD/benchmarks/train.mexw64 -------------------------------------------------------------------------------- /matlab_format/StackOverflow.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacoxu/StackOverflow/HEAD/matlab_format/StackOverflow.mat -------------------------------------------------------------------------------- /rawText/label_StackOverflow.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacoxu/StackOverflow/HEAD/rawText/label_StackOverflow.txt -------------------------------------------------------------------------------- /rawText/title_StackOverflow.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacoxu/StackOverflow/HEAD/rawText/title_StackOverflow.txt -------------------------------------------------------------------------------- /rawText/vocab_emb_Word2vec_48.vec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacoxu/StackOverflow/HEAD/rawText/vocab_emb_Word2vec_48.vec -------------------------------------------------------------------------------- /rawText/vocab_emb_Word2vec_48_index.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacoxu/StackOverflow/HEAD/rawText/vocab_emb_Word2vec_48_index.dic -------------------------------------------------------------------------------- /rawText/vocab_withIdx.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jacoxu/StackOverflow/HEAD/rawText/vocab_withIdx.dic --------------------------------------------------------------------------------