This project is the implementaion of all the course-work done for Web Search and Mining course.
- Assignment 1 :
- Create a Interface-based Boolean Information Retrieval Model supporting boolean queries (AND, OR, NOT)
- Should display the document ID(or as planned, the Name of the Document) of the Document satisfying the queries
- To be done in Python.
- Maybe with a C interface
- Tkinter GUI application
Not yet decided.
Not yet decided.
-
- Update your local Repository with
git pull
- Create a Branch and switch to it with :
git checkout -b BranchName
- Modify/Add Features and/or code then
git add <. or file list>
git commit -m "Commit Message"
- Set the upstream branch by
git push -u origin BranchName
- Go to the Repo on GitHub, switching the branch finally opening a pull-request.
- Wait for the other collaborators to Switch to the branch and check out the features and discuss
- If approved by all, the code shall be merged into the master branch
- Update your local Repository with