Kenny Cason

Results 48 comments of Kenny Cason

I created a simple unit tests with some weird text and could not immediately replicate your issue. Test ```java @Test public void defaultTokenizerTrimTest() throws IOException { final FrequencyAnalyzer frequencyAnalyzer =...

I went ahead and pushed up the test since there was no existing FrequencyAnalyzerTest. https://github.com/kennycason/kumo/blob/master/kumo-core/src/test/java/com/kennycason/kumo/nlp/FrequencyAnalyzerTest.java

@thomasegense thanks for the sample! I'll check it out.

@thomasegense Hi, Sorry this week has been hectic for me at work. I'll try and look at over this weekend. I have this tab open in my browser. :)

I was able to replicate this error. ```java @Test public void largeTextFileTest() throws IOException { final FrequencyAnalyzer frequencyAnalyzer = new FrequencyAnalyzer(); final List wordFrequencies = frequencyAnalyzer.load( Thread.currentThread().getContextClassLoader().getResourceAsStream("text/csdb.txt")); wordFrequencies .forEach(wordFrequency ->...

Can you explain more what you mean? I know your Q is very straight forward, but i thought this is the default behavior. It should spiral around from the center...

I'll look into it. Thanks!

@Daxunyu please do! :) (sorry for late response, work has been busy^2)

Hi, do you know if "whale.jpg" has transparent pixels or if the bg is just white? Kumo works by placing text where ever it finds transparent pixels. A future feature...

Oh interesting. I have not noticed this. I may be calculating width poorly somewhere. Thanks for posting an example. I have not seen this previously.