Not logged in.  Login/Logout/Register | List snippets | | Create snippet | Upload image | Upload data

20
LINES

< > BotCompany Repo | #1026748 // ELE: Correct misrecognitions

JavaX source code (Dynamic Module) [tags: use-pretranspiled] - run with: Stefan's OS

Uses 911K of libraries. Click here for Pure Java version (10273L/51K).

!7

cmodule ELECorrectMisrecognitions > ELESuggester {
  transient MultiMap<S> data; // replacement map
  
  void process_impl(S input) {
    if (data == null) loadData();
    showSuggestions(input, data.get(input));
  }  
  
  void loadData() {
    MultiMap<S> mm = ciMultiMap();
    S pat = "* is usually a misrecognition of *";
    LS propositions = map getVar(map getVar(pairsB(ai_findConfirmedPropositionsWithPattern(pat))));
    L<Matches> l = mapNotNulls(propositions, s -> getMatches(pat, s));
    for (Matches m : l)
      mm.put($1, $2);
    data = mm;
  }
}

Author comment

Began life as a copy of #1026727

download  show line numbers  debug dex  old transpilations   

Travelled to 7 computer(s): bhatertpkbcr, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tvejysmllsmz, vouqrxazstgt, xrpafgyirdlv

No comments. add comment

Snippet ID: #1026748
Snippet name: ELE: Correct misrecognitions
Eternal ID of this version: #1026748/4
Text MD5: fc15fd9e89fb3252f77486f82f2e56b5
Transpilation MD5: 1fe9646d97446f1595442ef0d1c4d73c
Author: stefan
Category: javax / ele
Type: JavaX source code (Dynamic Module)
Public (visible to everyone): Yes
Archived (hidden from active list): No
Created/modified: 2020-01-19 22:12:17
Source code size: 587 bytes / 20 lines
Pitched / IR pitched: No / No
Views / Downloads: 150 / 308
Version history: 3 change(s)
Referenced in: [show references]