Ayush Kaushal

Results 26 issues of Ayush Kaushal

I am trying something like the following and the error I get is `ERROR: UndefVarError: Tracker not defined` ## Steps to replicate this - 1. Let `ExampleModule.jl` file be the...

It might be better if the empty second element in resulting array isn't there. ``` julia> WordTokenizers.split_sentences("This is a sentence. ") 2-element Array{SubString{String},1}: "This is a sentence." "" ```

https://github.com/JuliaText/TextAnalysis.jl/blob/f11877268ba3911b30f7b13c549411a08cd380ad/src/sentiment.jl#L4 This function returns `nothing` in case the input length > maxlen. It will be better to have a proper error handling and err message display for this.

help wanted
good-first-issue

As of now, the Avg Perceptron POS model added in #131 gives ~60 per cent accuracy [on CoNLL 2003](https://github.com/Ayushk4/POS.jl/blob/master/valid/CoNLL.ipynb) which is decent for the 30+ classes it addresses. But still...

help wanted

We have been using a [**fast** TokenBuffer API](https://github.com/JuliaText/WordTokenizers.jl/blob/master/src/words/fast.jl) to speed up for various tokenizers in WordTokenizers.jl. Referring to #141 #140, I think it might be beneficial to extend the TokenBuffer...

It would be nice to have support for Dependency Parsing in Julia. We can have it as a part of TextModels.jl as per #111. If we go with Graph Based...