├── .DS_Store ├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── doc ├── API list.xlsx ├── Expert_Recommendation.md ├── Gender_Prediction.md ├── Identity_Prediction.md ├── Jobhopping_Prediction.md ├── NSFC_AI_Subject_Classifier.md ├── NSFC_Subject_Classifier.md ├── Paper_Ranker.md └── paper_ranker.png ├── model └── README.md ├── src ├── __init__.py ├── aiclassifier.py ├── classifier.py ├── config.py ├── expertrec.py ├── gender.py ├── jobhopping.py ├── paperranker.py ├── tors.py └── utils │ ├── __init__.py │ ├── acautomaton.py │ ├── crawler.py │ └── translator.py └── test ├── nsfc_test.py └── pageranker_test.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMinerOpen/prediction_api/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMinerOpen/prediction_api/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMinerOpen/prediction_api/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMinerOpen/prediction_api/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/API list.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMinerOpen/prediction_api/HEAD/doc/API list.xlsx -------------------------------------------------------------------------------- /doc/Expert_Recommendation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMinerOpen/prediction_api/HEAD/doc/Expert_Recommendation.md -------------------------------------------------------------------------------- /doc/Gender_Prediction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMinerOpen/prediction_api/HEAD/doc/Gender_Prediction.md -------------------------------------------------------------------------------- /doc/Identity_Prediction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMinerOpen/prediction_api/HEAD/doc/Identity_Prediction.md -------------------------------------------------------------------------------- /doc/Jobhopping_Prediction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMinerOpen/prediction_api/HEAD/doc/Jobhopping_Prediction.md -------------------------------------------------------------------------------- /doc/NSFC_AI_Subject_Classifier.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMinerOpen/prediction_api/HEAD/doc/NSFC_AI_Subject_Classifier.md -------------------------------------------------------------------------------- /doc/NSFC_Subject_Classifier.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMinerOpen/prediction_api/HEAD/doc/NSFC_Subject_Classifier.md -------------------------------------------------------------------------------- /doc/Paper_Ranker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMinerOpen/prediction_api/HEAD/doc/Paper_Ranker.md -------------------------------------------------------------------------------- /doc/paper_ranker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMinerOpen/prediction_api/HEAD/doc/paper_ranker.png -------------------------------------------------------------------------------- /model/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/aiclassifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMinerOpen/prediction_api/HEAD/src/aiclassifier.py -------------------------------------------------------------------------------- /src/classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMinerOpen/prediction_api/HEAD/src/classifier.py -------------------------------------------------------------------------------- /src/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMinerOpen/prediction_api/HEAD/src/config.py -------------------------------------------------------------------------------- /src/expertrec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMinerOpen/prediction_api/HEAD/src/expertrec.py -------------------------------------------------------------------------------- /src/gender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMinerOpen/prediction_api/HEAD/src/gender.py -------------------------------------------------------------------------------- /src/jobhopping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMinerOpen/prediction_api/HEAD/src/jobhopping.py -------------------------------------------------------------------------------- /src/paperranker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMinerOpen/prediction_api/HEAD/src/paperranker.py -------------------------------------------------------------------------------- /src/tors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMinerOpen/prediction_api/HEAD/src/tors.py -------------------------------------------------------------------------------- /src/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/utils/acautomaton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMinerOpen/prediction_api/HEAD/src/utils/acautomaton.py -------------------------------------------------------------------------------- /src/utils/crawler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMinerOpen/prediction_api/HEAD/src/utils/crawler.py -------------------------------------------------------------------------------- /src/utils/translator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMinerOpen/prediction_api/HEAD/src/utils/translator.py -------------------------------------------------------------------------------- /test/nsfc_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMinerOpen/prediction_api/HEAD/test/nsfc_test.py -------------------------------------------------------------------------------- /test/pageranker_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AMinerOpen/prediction_api/HEAD/test/pageranker_test.py --------------------------------------------------------------------------------