KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
word-suggestion
★ 12
Open GitHub ↗
No description available.
Download README (.md)
Explore Similar Repositories
Xamarin.Forms-4-Projects
:
Xamarin.Forms 4 Projects, Published by Packt
zsh-saml2aws
:
oh-my-zsh plugin for saml2aws
BeeHive
:
BeeHive: a flexible open hardware platform for behavioural experiments
Intro-to-Tensorflow-for-Deep-Learning-Udacity
:
Algorithms implemented in Google Colab.
mesan-react-native-news-app
:
News App with Search and Load More Functionality Using React Native and Redux.
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
word-suggestion
?
Download (.md)
# word-suggestion This is a demo application for word completion/suggestion similar to auto-complete mobile keyboards where given a previous word and a prefix the system will try to predict which word should follow. <img src="/img/demo.gif"/> ## Running Make sure [RedisGraph](http://redisgraph.io/) is accessible, ``` docker run --rm -p 6379:6379 redis/redis-stack:edge ``` ### Load data ```python python3 load.py ``` ### Run suggestion server ```python python3 complete.py ``` Tab to iterate through suggestions Space to accept current suggestion ## Graph model * Nodes represent words * Edge connecting two words A and B with weight N indicates we've encountered N instances of the pair A B. <img src="/img/model.png"/> ## Personalization Whenever a suggestion is accepted we reinforce to edge connecting the previous word and the suggestion by increasing its weight, in-case a word did not exist in the graph it is created.