https://github.com/devamoghs/inverted-index-nlp
The purpose of an inverted index is to allow fast full text searches, at a cost of increased processing when a document is added to the database. The inverted file may be the database file itself, rather than its index.
https://github.com/devamoghs/inverted-index-nlp
Last synced: 9 months ago
JSON representation
The purpose of an inverted index is to allow fast full text searches, at a cost of increased processing when a document is added to the database. The inverted file may be the database file itself, rather than its index.
- Host: GitHub
- URL: https://github.com/devamoghs/inverted-index-nlp
- Owner: devAmoghS
- Created: 2019-01-11T04:38:02.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-01-11T04:38:40.000Z (over 7 years ago)
- Last Synced: 2025-02-08T16:17:03.105Z (over 1 year ago)
- Language: Python
- Size: 2.93 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# inverted-index-nlp
The purpose of an inverted index is to allow fast full text searches, at a cost of increased processing when a document is added to the database. The inverted file may be the database file itself, rather than its index.