Kristian Kankainen

Results 21 comments of Kristian Kankainen

Since the reading-ease score applies to either sentences or whole texts, one could imagine also tagging the score on the sentence and text layers. Which would be preferred, to store...

@paultammo > For a starting point you can use [dummy SentenceFleschScoreRetagger example](https://github.com/estnltk/estnltk/blob/devel_1.6/scribbles/sentence_flesch_score_retagger.ipynb). I have the latest EstNLTK installed via `conda`. I am unable to reproduce your example code. I get...

Sorry for rushing, I now understand that the `retag` in my EstNLTK 1.6.2beta installed from conda uses a signature without layers (e.g. `retag(self, text, status)` instead of `retag(slf, text, layers,...

But both branches have the same `retag ` function. [Branch `devel_1.6`](https://github.com/estnltk/estnltk/blob/devel_1.6/estnltk/taggers/retagger.py#L28) has: ```Python3 def retag(self, text: Text, status: dict = None, check_output_consistency: bool=True ) -> Text: ``` and [branch `version_1.6`](https://github.com/estnltk/estnltk/blob/version_1.6/estnltk/taggers/retagger.py#L40)...

@paultammo I now got it working. Your naming of argument `raw_text` was a bit misleading, when I now interpret it as `text` (e.g. being of type Text) and a bit...

@soras I can't find this simple thing in the tutorials: how to loop through the nested layers? I currently try this ```Python3 text = Text("esimene lause. teine lause. kolmas pikem...

Here's a first go on this https://gist.github.com/kristiank/98202214e016448979fcefdb3d745598#file-flesch_retagger-ipynb

@soras and @paultammo what is the standard procedure to check whether a layer has been tagged/analyzed? I would like the Flesch Retagger's retag(text) to simply take a Text object as...

I now created an initial pull request #106 for the code. I wasn't really sure where to place the code files, but maybe we can discuss that in the PR?

Unicode normalization is a problem that no one seems to take seriously. All input needs to be normalized, and it need to be documented which normalization scheme is used. The...