Some code examples of information retrieval systems to illustrate the topics presented in Information Retrieval course of Computer Science Engineering Studies at Faculty of Engineering, University of Zaragoza, Spain.
Current examples:
- gensim_demo: Sample programs for indexing text/xml files, and search free text queries using the gensim Python library .
- whoosh_demo: Sample programs for indexing text/xml files, and search free text queries using the Whoosh Python library .
- embeddings: Sample program to test how to represent documents and queries in terms of word vectors, and obtain a ranking of documents more similar to the query according to this representation. This program is based on the gensim Python library and the Word2Vec tutorial.