Y. SOMDA

Results 28 comments of Y. SOMDA

Thanks for the example. Log: :heavy_check_mark: more than enough files publicly available for training https://github.com/search?p=100&q=extension%3Alog&type=Code :warning: different log files can have different structures depending on the log source, and the...

Hello @supersonicclay, This code snippet is very short and the model is not well suited for small snippets. More about that here https://guesslang.readthedocs.io/en/latest/contents.html#limitations > I can also repro with a...

@AndydeCleyre > I wrap it with a very simple fallback guesser based on just the first few characters That's a very good fallback idea. Maybe I can try to increase...

@supersonicclay > it recognized as JSON Nice. > It just took about a second Yes, the prediction can take some time especially when you're using the command line tool. However,...

Hi @TylerLeonhardt, that's an interesting subject. I tried adding `plaintext` as a programming language before. The plain text prediction accuracy was poor and the other languages prediction accuracy decreased as...

Any help on that is welcome!!

The model actually only reads the first 10k characters, for performance reasons: https://github.com/yoeo/guesslang/blob/f4ceb1d3a39356eebd32abd8dd4d416d145e5a38/guesslang/model.py#L28 I guess that the repeated use bitwise operators and the relative lack of semicolons at the start...

> Is this on training or inference? It reads the first 10k chars for both training & inference. > then I should probably only make strings with 10k characters Absolutely.