├── .gitignore ├── Lab0-Web-Spider ├── Data │ ├── all-url.json │ ├── proxies.json │ ├── proxies.txt │ ├── template.json │ ├── top250-detail.json │ └── top250-url.json ├── README.md ├── proxy_filter.py └── spider.py ├── Lab1-Search-Engine ├── Data │ ├── submission.csv │ ├── submit1-0.701-0.787.csv │ ├── submit10-jieba-0.825-0.889.csv │ ├── submit11-jieba-0.825-0.894.csv │ ├── submit12-jieba-0.825-0.896.csv │ ├── submit13-jieba-0.826-0.896.csv │ ├── submit14-fuse-0.826-0.902.csv │ ├── submit2-0.696-0.780.csv │ ├── submit3-0.749-0.831.csv │ ├── submit4-0.751-0.833.csv │ ├── submit5-0.803-0.877.csv │ ├── submit6-pkuseg.csv │ ├── submit7-jieba-0.812-0.883.csv │ ├── submit8-jieba-0.811-0.868.csv │ ├── submit9-fuse-0.812-0.884.csv │ ├── test_docs.csv │ └── test_querys.csv ├── README.md ├── fuser.py ├── report-lab1.pdf ├── requirements.txt ├── searcher.py ├── sorter.py ├── tokenizer.py ├── vectorizer.py └── viewer.py ├── Lab2-Entity-Recognition ├── Data │ ├── answer.json │ ├── answer.txt │ ├── auto-rules.txt │ ├── fuse1-0.6595.csv │ ├── fuse2-0.6724.csv │ ├── fuse3-0.6769.csv │ ├── fuse4-0.7071.csv │ ├── fuse5-0.7094.csv │ ├── fuse6-0.7166.csv │ ├── fuse7-0.7220.csv │ ├── fuse8-0.7257.csv │ ├── manual-rules.txt │ ├── rule.csv │ ├── submit1-0.6296.csv │ ├── submit2.csv │ ├── submit3-0.7044.csv │ ├── submit4.csv │ ├── submit5.csv │ ├── submit6.csv │ ├── test.json │ ├── test.txt │ ├── test_word.txt │ ├── train.json │ ├── train.txt │ └── train_word.txt ├── README.md ├── crf.py ├── fuse.py ├── preprocess.py ├── record.txt ├── report-lab2.pdf ├── requirements.txt ├── rule.py └── test.py ├── Lab3-Recommender-System ├── Data │ ├── contacts.txt │ ├── proxies.txt │ ├── test.txt │ └── train.txt ├── README.md ├── fuse.py ├── preprocess.py ├── proxy_filter.py ├── record.txt ├── report-lab3.pdf ├── requirements.txt ├── spider.py └── surprise_models.py └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepear-jzx/USTC-Web-Info-2019/HEAD/.gitignore -------------------------------------------------------------------------------- /Lab0-Web-Spider/Data/all-url.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepear-jzx/USTC-Web-Info-2019/HEAD/Lab0-Web-Spider/Data/all-url.json -------------------------------------------------------------------------------- /Lab0-Web-Spider/Data/proxies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepear-jzx/USTC-Web-Info-2019/HEAD/Lab0-Web-Spider/Data/proxies.json -------------------------------------------------------------------------------- /Lab0-Web-Spider/Data/proxies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepear-jzx/USTC-Web-Info-2019/HEAD/Lab0-Web-Spider/Data/proxies.txt -------------------------------------------------------------------------------- /Lab0-Web-Spider/Data/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepear-jzx/USTC-Web-Info-2019/HEAD/Lab0-Web-Spider/Data/template.json -------------------------------------------------------------------------------- /Lab0-Web-Spider/Data/top250-detail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepear-jzx/USTC-Web-Info-2019/HEAD/Lab0-Web-Spider/Data/top250-detail.json -------------------------------------------------------------------------------- /Lab0-Web-Spider/Data/top250-url.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepear-jzx/USTC-Web-Info-2019/HEAD/Lab0-Web-Spider/Data/top250-url.json -------------------------------------------------------------------------------- /Lab0-Web-Spider/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepear-jzx/USTC-Web-Info-2019/HEAD/Lab0-Web-Spider/README.md -------------------------------------------------------------------------------- /Lab0-Web-Spider/proxy_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepear-jzx/USTC-Web-Info-2019/HEAD/Lab0-Web-Spider/proxy_filter.py -------------------------------------------------------------------------------- /Lab0-Web-Spider/spider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepear-jzx/USTC-Web-Info-2019/HEAD/Lab0-Web-Spider/spider.py -------------------------------------------------------------------------------- /Lab1-Search-Engine/Data/submission.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepear-jzx/USTC-Web-Info-2019/HEAD/Lab1-Search-Engine/Data/submission.csv -------------------------------------------------------------------------------- /Lab1-Search-Engine/Data/submit1-0.701-0.787.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepear-jzx/USTC-Web-Info-2019/HEAD/Lab1-Search-Engine/Data/submit1-0.701-0.787.csv -------------------------------------------------------------------------------- /Lab1-Search-Engine/Data/submit10-jieba-0.825-0.889.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepear-jzx/USTC-Web-Info-2019/HEAD/Lab1-Search-Engine/Data/submit10-jieba-0.825-0.889.csv -------------------------------------------------------------------------------- /Lab1-Search-Engine/Data/submit11-jieba-0.825-0.894.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepear-jzx/USTC-Web-Info-2019/HEAD/Lab1-Search-Engine/Data/submit11-jieba-0.825-0.894.csv -------------------------------------------------------------------------------- /Lab1-Search-Engine/Data/submit12-jieba-0.825-0.896.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepear-jzx/USTC-Web-Info-2019/HEAD/Lab1-Search-Engine/Data/submit12-jieba-0.825-0.896.csv -------------------------------------------------------------------------------- /Lab1-Search-Engine/Data/submit13-jieba-0.826-0.896.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepear-jzx/USTC-Web-Info-2019/HEAD/Lab1-Search-Engine/Data/submit13-jieba-0.826-0.896.csv -------------------------------------------------------------------------------- /Lab1-Search-Engine/Data/submit14-fuse-0.826-0.902.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepear-jzx/USTC-Web-Info-2019/HEAD/Lab1-Search-Engine/Data/submit14-fuse-0.826-0.902.csv -------------------------------------------------------------------------------- /Lab1-Search-Engine/Data/submit2-0.696-0.780.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepear-jzx/USTC-Web-Info-2019/HEAD/Lab1-Search-Engine/Data/submit2-0.696-0.780.csv -------------------------------------------------------------------------------- /Lab1-Search-Engine/Data/submit3-0.749-0.831.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepear-jzx/USTC-Web-Info-2019/HEAD/Lab1-Search-Engine/Data/submit3-0.749-0.831.csv -------------------------------------------------------------------------------- /Lab1-Search-Engine/Data/submit4-0.751-0.833.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepear-jzx/USTC-Web-Info-2019/HEAD/Lab1-Search-Engine/Data/submit4-0.751-0.833.csv -------------------------------------------------------------------------------- /Lab1-Search-Engine/Data/submit5-0.803-0.877.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepear-jzx/USTC-Web-Info-2019/HEAD/Lab1-Search-Engine/Data/submit5-0.803-0.877.csv -------------------------------------------------------------------------------- /Lab1-Search-Engine/Data/submit6-pkuseg.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepear-jzx/USTC-Web-Info-2019/HEAD/Lab1-Search-Engine/Data/submit6-pkuseg.csv -------------------------------------------------------------------------------- /Lab1-Search-Engine/Data/submit7-jieba-0.812-0.883.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepear-jzx/USTC-Web-Info-2019/HEAD/Lab1-Search-Engine/Data/submit7-jieba-0.812-0.883.csv -------------------------------------------------------------------------------- /Lab1-Search-Engine/Data/submit8-jieba-0.811-0.868.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepear-jzx/USTC-Web-Info-2019/HEAD/Lab1-Search-Engine/Data/submit8-jieba-0.811-0.868.csv -------------------------------------------------------------------------------- /Lab1-Search-Engine/Data/submit9-fuse-0.812-0.884.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepear-jzx/USTC-Web-Info-2019/HEAD/Lab1-Search-Engine/Data/submit9-fuse-0.812-0.884.csv -------------------------------------------------------------------------------- /Lab1-Search-Engine/Data/test_docs.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepear-jzx/USTC-Web-Info-2019/HEAD/Lab1-Search-Engine/Data/test_docs.csv -------------------------------------------------------------------------------- /Lab1-Search-Engine/Data/test_querys.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepear-jzx/USTC-Web-Info-2019/HEAD/Lab1-Search-Engine/Data/test_querys.csv -------------------------------------------------------------------------------- /Lab1-Search-Engine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepear-jzx/USTC-Web-Info-2019/HEAD/Lab1-Search-Engine/README.md -------------------------------------------------------------------------------- /Lab1-Search-Engine/fuser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepear-jzx/USTC-Web-Info-2019/HEAD/Lab1-Search-Engine/fuser.py -------------------------------------------------------------------------------- /Lab1-Search-Engine/report-lab1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepear-jzx/USTC-Web-Info-2019/HEAD/Lab1-Search-Engine/report-lab1.pdf -------------------------------------------------------------------------------- /Lab1-Search-Engine/requirements.txt: -------------------------------------------------------------------------------- 1 | pandas 2 | numpy 3 | pkuseg 4 | tqdm 5 | scipy 6 | jieba 7 | -------------------------------------------------------------------------------- /Lab1-Search-Engine/searcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepear-jzx/USTC-Web-Info-2019/HEAD/Lab1-Search-Engine/searcher.py -------------------------------------------------------------------------------- /Lab1-Search-Engine/sorter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepear-jzx/USTC-Web-Info-2019/HEAD/Lab1-Search-Engine/sorter.py -------------------------------------------------------------------------------- /Lab1-Search-Engine/tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepear-jzx/USTC-Web-Info-2019/HEAD/Lab1-Search-Engine/tokenizer.py -------------------------------------------------------------------------------- /Lab1-Search-Engine/vectorizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepear-jzx/USTC-Web-Info-2019/HEAD/Lab1-Search-Engine/vectorizer.py -------------------------------------------------------------------------------- /Lab1-Search-Engine/viewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepear-jzx/USTC-Web-Info-2019/HEAD/Lab1-Search-Engine/viewer.py -------------------------------------------------------------------------------- /Lab2-Entity-Recognition/Data/answer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepear-jzx/USTC-Web-Info-2019/HEAD/Lab2-Entity-Recognition/Data/answer.json -------------------------------------------------------------------------------- /Lab2-Entity-Recognition/Data/answer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepear-jzx/USTC-Web-Info-2019/HEAD/Lab2-Entity-Recognition/Data/answer.txt -------------------------------------------------------------------------------- /Lab2-Entity-Recognition/Data/auto-rules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepear-jzx/USTC-Web-Info-2019/HEAD/Lab2-Entity-Recognition/Data/auto-rules.txt -------------------------------------------------------------------------------- /Lab2-Entity-Recognition/Data/fuse1-0.6595.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepear-jzx/USTC-Web-Info-2019/HEAD/Lab2-Entity-Recognition/Data/fuse1-0.6595.csv -------------------------------------------------------------------------------- /Lab2-Entity-Recognition/Data/fuse2-0.6724.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepear-jzx/USTC-Web-Info-2019/HEAD/Lab2-Entity-Recognition/Data/fuse2-0.6724.csv -------------------------------------------------------------------------------- /Lab2-Entity-Recognition/Data/fuse3-0.6769.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepear-jzx/USTC-Web-Info-2019/HEAD/Lab2-Entity-Recognition/Data/fuse3-0.6769.csv -------------------------------------------------------------------------------- /Lab2-Entity-Recognition/Data/fuse4-0.7071.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepear-jzx/USTC-Web-Info-2019/HEAD/Lab2-Entity-Recognition/Data/fuse4-0.7071.csv -------------------------------------------------------------------------------- /Lab2-Entity-Recognition/Data/fuse5-0.7094.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepear-jzx/USTC-Web-Info-2019/HEAD/Lab2-Entity-Recognition/Data/fuse5-0.7094.csv -------------------------------------------------------------------------------- /Lab2-Entity-Recognition/Data/fuse6-0.7166.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepear-jzx/USTC-Web-Info-2019/HEAD/Lab2-Entity-Recognition/Data/fuse6-0.7166.csv -------------------------------------------------------------------------------- /Lab2-Entity-Recognition/Data/fuse7-0.7220.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepear-jzx/USTC-Web-Info-2019/HEAD/Lab2-Entity-Recognition/Data/fuse7-0.7220.csv -------------------------------------------------------------------------------- /Lab2-Entity-Recognition/Data/fuse8-0.7257.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepear-jzx/USTC-Web-Info-2019/HEAD/Lab2-Entity-Recognition/Data/fuse8-0.7257.csv -------------------------------------------------------------------------------- /Lab2-Entity-Recognition/Data/manual-rules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepear-jzx/USTC-Web-Info-2019/HEAD/Lab2-Entity-Recognition/Data/manual-rules.txt -------------------------------------------------------------------------------- /Lab2-Entity-Recognition/Data/rule.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepear-jzx/USTC-Web-Info-2019/HEAD/Lab2-Entity-Recognition/Data/rule.csv -------------------------------------------------------------------------------- /Lab2-Entity-Recognition/Data/submit1-0.6296.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepear-jzx/USTC-Web-Info-2019/HEAD/Lab2-Entity-Recognition/Data/submit1-0.6296.csv -------------------------------------------------------------------------------- /Lab2-Entity-Recognition/Data/submit2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepear-jzx/USTC-Web-Info-2019/HEAD/Lab2-Entity-Recognition/Data/submit2.csv -------------------------------------------------------------------------------- /Lab2-Entity-Recognition/Data/submit3-0.7044.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepear-jzx/USTC-Web-Info-2019/HEAD/Lab2-Entity-Recognition/Data/submit3-0.7044.csv -------------------------------------------------------------------------------- /Lab2-Entity-Recognition/Data/submit4.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepear-jzx/USTC-Web-Info-2019/HEAD/Lab2-Entity-Recognition/Data/submit4.csv -------------------------------------------------------------------------------- /Lab2-Entity-Recognition/Data/submit5.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepear-jzx/USTC-Web-Info-2019/HEAD/Lab2-Entity-Recognition/Data/submit5.csv -------------------------------------------------------------------------------- /Lab2-Entity-Recognition/Data/submit6.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepear-jzx/USTC-Web-Info-2019/HEAD/Lab2-Entity-Recognition/Data/submit6.csv -------------------------------------------------------------------------------- /Lab2-Entity-Recognition/Data/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepear-jzx/USTC-Web-Info-2019/HEAD/Lab2-Entity-Recognition/Data/test.json -------------------------------------------------------------------------------- /Lab2-Entity-Recognition/Data/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepear-jzx/USTC-Web-Info-2019/HEAD/Lab2-Entity-Recognition/Data/test.txt -------------------------------------------------------------------------------- /Lab2-Entity-Recognition/Data/test_word.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepear-jzx/USTC-Web-Info-2019/HEAD/Lab2-Entity-Recognition/Data/test_word.txt -------------------------------------------------------------------------------- /Lab2-Entity-Recognition/Data/train.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepear-jzx/USTC-Web-Info-2019/HEAD/Lab2-Entity-Recognition/Data/train.json -------------------------------------------------------------------------------- /Lab2-Entity-Recognition/Data/train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepear-jzx/USTC-Web-Info-2019/HEAD/Lab2-Entity-Recognition/Data/train.txt -------------------------------------------------------------------------------- /Lab2-Entity-Recognition/Data/train_word.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepear-jzx/USTC-Web-Info-2019/HEAD/Lab2-Entity-Recognition/Data/train_word.txt -------------------------------------------------------------------------------- /Lab2-Entity-Recognition/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepear-jzx/USTC-Web-Info-2019/HEAD/Lab2-Entity-Recognition/README.md -------------------------------------------------------------------------------- /Lab2-Entity-Recognition/crf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepear-jzx/USTC-Web-Info-2019/HEAD/Lab2-Entity-Recognition/crf.py -------------------------------------------------------------------------------- /Lab2-Entity-Recognition/fuse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepear-jzx/USTC-Web-Info-2019/HEAD/Lab2-Entity-Recognition/fuse.py -------------------------------------------------------------------------------- /Lab2-Entity-Recognition/preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepear-jzx/USTC-Web-Info-2019/HEAD/Lab2-Entity-Recognition/preprocess.py -------------------------------------------------------------------------------- /Lab2-Entity-Recognition/record.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepear-jzx/USTC-Web-Info-2019/HEAD/Lab2-Entity-Recognition/record.txt -------------------------------------------------------------------------------- /Lab2-Entity-Recognition/report-lab2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepear-jzx/USTC-Web-Info-2019/HEAD/Lab2-Entity-Recognition/report-lab2.pdf -------------------------------------------------------------------------------- /Lab2-Entity-Recognition/requirements.txt: -------------------------------------------------------------------------------- 1 | pandas 2 | tqdm 3 | numpy 4 | sklearn-crfsuite 5 | xmnlp 6 | -------------------------------------------------------------------------------- /Lab2-Entity-Recognition/rule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepear-jzx/USTC-Web-Info-2019/HEAD/Lab2-Entity-Recognition/rule.py -------------------------------------------------------------------------------- /Lab2-Entity-Recognition/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepear-jzx/USTC-Web-Info-2019/HEAD/Lab2-Entity-Recognition/test.py -------------------------------------------------------------------------------- /Lab3-Recommender-System/Data/contacts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepear-jzx/USTC-Web-Info-2019/HEAD/Lab3-Recommender-System/Data/contacts.txt -------------------------------------------------------------------------------- /Lab3-Recommender-System/Data/proxies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepear-jzx/USTC-Web-Info-2019/HEAD/Lab3-Recommender-System/Data/proxies.txt -------------------------------------------------------------------------------- /Lab3-Recommender-System/Data/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepear-jzx/USTC-Web-Info-2019/HEAD/Lab3-Recommender-System/Data/test.txt -------------------------------------------------------------------------------- /Lab3-Recommender-System/Data/train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepear-jzx/USTC-Web-Info-2019/HEAD/Lab3-Recommender-System/Data/train.txt -------------------------------------------------------------------------------- /Lab3-Recommender-System/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepear-jzx/USTC-Web-Info-2019/HEAD/Lab3-Recommender-System/README.md -------------------------------------------------------------------------------- /Lab3-Recommender-System/fuse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepear-jzx/USTC-Web-Info-2019/HEAD/Lab3-Recommender-System/fuse.py -------------------------------------------------------------------------------- /Lab3-Recommender-System/preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepear-jzx/USTC-Web-Info-2019/HEAD/Lab3-Recommender-System/preprocess.py -------------------------------------------------------------------------------- /Lab3-Recommender-System/proxy_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepear-jzx/USTC-Web-Info-2019/HEAD/Lab3-Recommender-System/proxy_filter.py -------------------------------------------------------------------------------- /Lab3-Recommender-System/record.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepear-jzx/USTC-Web-Info-2019/HEAD/Lab3-Recommender-System/record.txt -------------------------------------------------------------------------------- /Lab3-Recommender-System/report-lab3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepear-jzx/USTC-Web-Info-2019/HEAD/Lab3-Recommender-System/report-lab3.pdf -------------------------------------------------------------------------------- /Lab3-Recommender-System/requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | scikit-surprise 3 | tqdm 4 | lxml 5 | -------------------------------------------------------------------------------- /Lab3-Recommender-System/spider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepear-jzx/USTC-Web-Info-2019/HEAD/Lab3-Recommender-System/spider.py -------------------------------------------------------------------------------- /Lab3-Recommender-System/surprise_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepear-jzx/USTC-Web-Info-2019/HEAD/Lab3-Recommender-System/surprise_models.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icepear-jzx/USTC-Web-Info-2019/HEAD/README.md --------------------------------------------------------------------------------