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
The maplist stores all [wordId, weight_in_the_topic] pair for a topic. This line only sorts maplist based on weight_in_the_topic.
After sorting the list, we can retrieve the top N words with the highest weights of a topic.
Maybe you can paste your exception stack here so that we can find out what's happened.
line 172: Collections.sort(maplist, (o1, o2) -> o2.getValue().compareTo(o1.getValue()));
This line is error on my computer.
The text was updated successfully, but these errors were encountered: