├── .gitignore ├── DBN.py ├── HiddenLayer.py ├── LICENSE ├── LogisticRegression.py ├── RBM.py ├── README.md ├── SdA.py ├── dA.py ├── normal_8.py ├── test.arff ├── test.txt ├── test1.txt ├── train.arff ├── train.txt ├── train1.txt ├── utils.py └── 基于复杂语言网络的文本二分类 ├── file_to_graph1_test.py ├── file_to_graph1_train.py ├── graph_feature.py ├── predict.py └── select_feature.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanshengli/DBN_Learning/HEAD/.gitignore -------------------------------------------------------------------------------- /DBN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanshengli/DBN_Learning/HEAD/DBN.py -------------------------------------------------------------------------------- /HiddenLayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanshengli/DBN_Learning/HEAD/HiddenLayer.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanshengli/DBN_Learning/HEAD/LICENSE -------------------------------------------------------------------------------- /LogisticRegression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanshengli/DBN_Learning/HEAD/LogisticRegression.py -------------------------------------------------------------------------------- /RBM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanshengli/DBN_Learning/HEAD/RBM.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanshengli/DBN_Learning/HEAD/README.md -------------------------------------------------------------------------------- /SdA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanshengli/DBN_Learning/HEAD/SdA.py -------------------------------------------------------------------------------- /dA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanshengli/DBN_Learning/HEAD/dA.py -------------------------------------------------------------------------------- /normal_8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanshengli/DBN_Learning/HEAD/normal_8.py -------------------------------------------------------------------------------- /test.arff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanshengli/DBN_Learning/HEAD/test.arff -------------------------------------------------------------------------------- /test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanshengli/DBN_Learning/HEAD/test.txt -------------------------------------------------------------------------------- /test1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanshengli/DBN_Learning/HEAD/test1.txt -------------------------------------------------------------------------------- /train.arff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanshengli/DBN_Learning/HEAD/train.arff -------------------------------------------------------------------------------- /train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanshengli/DBN_Learning/HEAD/train.txt -------------------------------------------------------------------------------- /train1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanshengli/DBN_Learning/HEAD/train1.txt -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanshengli/DBN_Learning/HEAD/utils.py -------------------------------------------------------------------------------- /基于复杂语言网络的文本二分类/file_to_graph1_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanshengli/DBN_Learning/HEAD/基于复杂语言网络的文本二分类/file_to_graph1_test.py -------------------------------------------------------------------------------- /基于复杂语言网络的文本二分类/file_to_graph1_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanshengli/DBN_Learning/HEAD/基于复杂语言网络的文本二分类/file_to_graph1_train.py -------------------------------------------------------------------------------- /基于复杂语言网络的文本二分类/graph_feature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanshengli/DBN_Learning/HEAD/基于复杂语言网络的文本二分类/graph_feature.py -------------------------------------------------------------------------------- /基于复杂语言网络的文本二分类/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanshengli/DBN_Learning/HEAD/基于复杂语言网络的文本二分类/predict.py -------------------------------------------------------------------------------- /基于复杂语言网络的文本二分类/select_feature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yanshengli/DBN_Learning/HEAD/基于复杂语言网络的文本二分类/select_feature.py --------------------------------------------------------------------------------