You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Wordle is a toy for generating “word clouds” from text that you provide. The clouds give greater prominence to words that appear more frequently in the source text. The Wordle applet was created by by Jonathan Feinberg (when at IBM hence wordle has licence restrictions).
6
-
7
-
A key part of Wordle is the cue.language.jar (that is also included with wordcram).
8
-
cue.language is a small library of Java code and resources that provides the following basic natural-language processing capabilities:
9
-
10
-
Tokenizing natural language text into individual words
11
-
Tokenizing natural language text into sentences
12
-
Tokenizing natural language text into n-grams (sequences of 2 or more words that appear next to each other in a sentence)
13
-
Counting strings
14
-
Detecting which script (alphabet, writing system) is required to represent a text
15
-
Guessing what language a text is in
16
-
Customizable "stop word" detection for a variety of languages
17
-
18
-
The original by Jonathan Feinberg (when at IBM hence licence restrictions for cue.language.jar)
0 commit comments