├── .gitignore ├── README.md ├── binary_classify.py ├── class_feature.py ├── complete_link.py ├── conn.py ├── corpus.py ├── cut_and_cal_tfidf.py ├── elasticsearch_api_demo.py ├── feature_extract.py ├── gen_sitemap.py ├── grid_search.py ├── kmeans.py ├── multi_axis.py ├── nlpir_demo.py ├── page_classify.py ├── plot_3d.py ├── plot_3d_scatter.py ├── plot_3d_surface.py ├── plot_linear.py ├── polynomial.py ├── preprocess.py ├── scikit_learn_linear_model_demo.py ├── scikit_learn_multvariable_linear_model_demo.py ├── scikit_learn_svm_demo.py ├── sgd_regressor.py ├── single_variable.py ├── sinx.py ├── stopwords.txt └── tfidf.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcdevelop/page-classify/HEAD/README.md -------------------------------------------------------------------------------- /binary_classify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcdevelop/page-classify/HEAD/binary_classify.py -------------------------------------------------------------------------------- /class_feature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcdevelop/page-classify/HEAD/class_feature.py -------------------------------------------------------------------------------- /complete_link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcdevelop/page-classify/HEAD/complete_link.py -------------------------------------------------------------------------------- /conn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcdevelop/page-classify/HEAD/conn.py -------------------------------------------------------------------------------- /corpus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcdevelop/page-classify/HEAD/corpus.py -------------------------------------------------------------------------------- /cut_and_cal_tfidf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcdevelop/page-classify/HEAD/cut_and_cal_tfidf.py -------------------------------------------------------------------------------- /elasticsearch_api_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcdevelop/page-classify/HEAD/elasticsearch_api_demo.py -------------------------------------------------------------------------------- /feature_extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcdevelop/page-classify/HEAD/feature_extract.py -------------------------------------------------------------------------------- /gen_sitemap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcdevelop/page-classify/HEAD/gen_sitemap.py -------------------------------------------------------------------------------- /grid_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcdevelop/page-classify/HEAD/grid_search.py -------------------------------------------------------------------------------- /kmeans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcdevelop/page-classify/HEAD/kmeans.py -------------------------------------------------------------------------------- /multi_axis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcdevelop/page-classify/HEAD/multi_axis.py -------------------------------------------------------------------------------- /nlpir_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcdevelop/page-classify/HEAD/nlpir_demo.py -------------------------------------------------------------------------------- /page_classify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcdevelop/page-classify/HEAD/page_classify.py -------------------------------------------------------------------------------- /plot_3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcdevelop/page-classify/HEAD/plot_3d.py -------------------------------------------------------------------------------- /plot_3d_scatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcdevelop/page-classify/HEAD/plot_3d_scatter.py -------------------------------------------------------------------------------- /plot_3d_surface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcdevelop/page-classify/HEAD/plot_3d_surface.py -------------------------------------------------------------------------------- /plot_linear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcdevelop/page-classify/HEAD/plot_linear.py -------------------------------------------------------------------------------- /polynomial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcdevelop/page-classify/HEAD/polynomial.py -------------------------------------------------------------------------------- /preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcdevelop/page-classify/HEAD/preprocess.py -------------------------------------------------------------------------------- /scikit_learn_linear_model_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcdevelop/page-classify/HEAD/scikit_learn_linear_model_demo.py -------------------------------------------------------------------------------- /scikit_learn_multvariable_linear_model_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcdevelop/page-classify/HEAD/scikit_learn_multvariable_linear_model_demo.py -------------------------------------------------------------------------------- /scikit_learn_svm_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcdevelop/page-classify/HEAD/scikit_learn_svm_demo.py -------------------------------------------------------------------------------- /sgd_regressor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcdevelop/page-classify/HEAD/sgd_regressor.py -------------------------------------------------------------------------------- /single_variable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcdevelop/page-classify/HEAD/single_variable.py -------------------------------------------------------------------------------- /sinx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcdevelop/page-classify/HEAD/sinx.py -------------------------------------------------------------------------------- /stopwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcdevelop/page-classify/HEAD/stopwords.txt -------------------------------------------------------------------------------- /tfidf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcdevelop/page-classify/HEAD/tfidf.py --------------------------------------------------------------------------------