Open
Conversation
auberonedu
reviewed
Feb 18, 2025
Comment on lines
+45
to
+47
| if(word.endsWith(".")){ | ||
| tokens.add(word.substring(0, word.length() -1)); | ||
| tokens.add("."); |
Comment on lines
+39
to
+41
| //split line by space | ||
| String[]words = line.split("\\s+"); //https://stackoverflow.com/questions/25729181/how-to-split-by-newline-and-space | ||
| //Splitting Words and Periods |
Comment on lines
+23
to
+29
| void testTokenizeSentenceWitSpace(){ | ||
| LowercaseSentenceTokenizer tokenizer = new LowercaseSentenceTokenizer(); | ||
| Scanner scanner = new Scanner("this is a sentence with many space"); | ||
| List<String> tokens = tokenizer.tokenize(scanner); | ||
|
|
||
| assertEquals(List.of("this", "is", "a","sentence","with", "many","space"), tokens); | ||
| } |
Comment on lines
+57
to
+70
| neighborMap = new HashMap<>(); | ||
|
|
||
| //loop through wods | ||
| for(int i=0; i<trainingWords.size()-1; i++){ | ||
| String word = trainingWords.get(i); // Get the current word | ||
| String nextWord = trainingWords.get(i + 1); | ||
|
|
||
| // If the word is not in the map, add it with an empty list | ||
| if (!neighborMap.containsKey(word)) { | ||
| neighborMap.put(word, new ArrayList<>()); | ||
| } | ||
|
|
||
| // Add the next word to the list of following words | ||
| neighborMap.get(word).add(nextWord); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.