资 源 简 介
_Right now this is an experimental project as we investigate supporting development of our projects_
Overview
This goal of this software is to allow users with limited mobility to be able to more accurately and quickly input text into a computer. This software is intelligent enough to offer suggestions for the user based on context and the characters inputted so far.
For implementing the word level prediction, the application reads input text files, that can be all the documents in the users local machine, or all his emails. Any text that can help the application to initiate the word level contextual prediction.
The application maintains 3 sorted maps for storing as keys:
A unigram map: This map stores individual words in the input text
A bigram map: This map stores consecutive words in the input text
A trigram map: This map stores 3 consecutive words in the input text.
Initially the