JuliaText / TextAnalysis.jl

Julia package for text analysis
Other
373 stars 95 forks source link

BoundsError in sentiment analysis #160

Open schottmueller opened 5 years ago

schottmueller commented 5 years ago

the following leads to a BoundsError

using TextAnalysis
s = SentimentAnalyzer()
s(StringDocument("resulting"))

The Error message is:

ERROR: BoundsError: attempt to access 32×5000 Array{Float32,2} at index [Base.Slice(Base.OneTo(32)), 5001]

Is this expected behavior?