├── .gitignore ├── README.md ├── archives └── IR-Course-Reports │ ├── 2016301500067-高智.pdf │ ├── 2017301040186-杨楚秦-实验报告.pdf │ ├── 2018302060120.pdf │ ├── 2018302080100.pdf │ └── 2018302080152.pdf ├── doc_parsers ├── __init__.py └── pdf_parser.py ├── index_managers ├── __init__.py └── basic_inverted_indexer.py ├── main.py ├── query_managers ├── __init__.py └── basic_query_manager.py ├── query_models ├── __init__.py ├── boolean_query_model.py └── vector_query_model.py └── utilities ├── Constants.py ├── __init__.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- 1 | # Filter out useless files 2 | .idea/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whmachao/Information-Retrieval-System/HEAD/README.md -------------------------------------------------------------------------------- /archives/IR-Course-Reports/2016301500067-高智.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whmachao/Information-Retrieval-System/HEAD/archives/IR-Course-Reports/2016301500067-高智.pdf -------------------------------------------------------------------------------- /archives/IR-Course-Reports/2017301040186-杨楚秦-实验报告.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whmachao/Information-Retrieval-System/HEAD/archives/IR-Course-Reports/2017301040186-杨楚秦-实验报告.pdf -------------------------------------------------------------------------------- /archives/IR-Course-Reports/2018302060120.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whmachao/Information-Retrieval-System/HEAD/archives/IR-Course-Reports/2018302060120.pdf -------------------------------------------------------------------------------- /archives/IR-Course-Reports/2018302080100.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whmachao/Information-Retrieval-System/HEAD/archives/IR-Course-Reports/2018302080100.pdf -------------------------------------------------------------------------------- /archives/IR-Course-Reports/2018302080152.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whmachao/Information-Retrieval-System/HEAD/archives/IR-Course-Reports/2018302080152.pdf -------------------------------------------------------------------------------- /doc_parsers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc_parsers/pdf_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whmachao/Information-Retrieval-System/HEAD/doc_parsers/pdf_parser.py -------------------------------------------------------------------------------- /index_managers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /index_managers/basic_inverted_indexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whmachao/Information-Retrieval-System/HEAD/index_managers/basic_inverted_indexer.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whmachao/Information-Retrieval-System/HEAD/main.py -------------------------------------------------------------------------------- /query_managers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /query_managers/basic_query_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whmachao/Information-Retrieval-System/HEAD/query_managers/basic_query_manager.py -------------------------------------------------------------------------------- /query_models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /query_models/boolean_query_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whmachao/Information-Retrieval-System/HEAD/query_models/boolean_query_model.py -------------------------------------------------------------------------------- /query_models/vector_query_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whmachao/Information-Retrieval-System/HEAD/query_models/vector_query_model.py -------------------------------------------------------------------------------- /utilities/Constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whmachao/Information-Retrieval-System/HEAD/utilities/Constants.py -------------------------------------------------------------------------------- /utilities/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utilities/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whmachao/Information-Retrieval-System/HEAD/utilities/utils.py --------------------------------------------------------------------------------