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

20
LINES

< > BotCompany Repo | #1017489 // Print most likely types of unknown word by best parse [OK]

JavaX source code (desktop) [tags: use-pretranspiled] - run with: x30.jar

Download Jar. Libraryless. Click here for Pure Java version (11069L/81K).

!7

p-exp {
  S s = "I did the rgjiogjidres today";
  PTElement tree = ai_parseToTreeWithGuessing(s);
  L<S> unknown = ai_unknownWordsInSentence(s);
  printStruct(+unknown);
  assertTrue(nempty(unknown));
  
  //ai_cullParseTree(tree);
  
  for (S word : unknown) {
    //L<PTElement> e = ai_scanParseTreeForWord_all(tree, word);
    L<PTElement> e = ai_scanParseTreeForWord_all_tighter(tree, word);
    //e = map ai_parseTree_descendToComposite_opt(e);
    //pnl(map toStringWithClass(e));
    L<S> categories = uniquify(notNulls(mapMethod(e, 'category)));
    print("Guessing categories for " + word + ": " + categories);
  }
}

Author comment

Began life as a copy of #1017485

download  show line numbers  debug dex  old transpilations   

Travelled to 14 computer(s): aoiabmzegqzx, bhatertpkbcr, cbybwowwnfue, cfunsshuasjs, gwrvuhgaqvyk, irmadwmeruwu, ishqpsrjomds, lpdgvwnxivlt, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tslmcundralx, tvejysmllsmz, vouqrxazstgt

No comments. add comment

Snippet ID: #1017489
Snippet name: Print most likely types of unknown word by best parse [OK]
Eternal ID of this version: #1017489/13
Text MD5: 9cbf55c80e452dd8174390a725922485
Transpilation MD5: 6b1cdf6c1402509e3fa97a5c54a2857b
Author: stefan
Category: javax / a.i.
Type: JavaX source code (desktop)
Public (visible to everyone): Yes
Archived (hidden from active list): No
Created/modified: 2018-07-23 23:06:58
Source code size: 648 bytes / 20 lines
Pitched / IR pitched: No / No
Views / Downloads: 345 / 733
Version history: 12 change(s)
Referenced in: [show references]