felipefcunica

Results 5 comments of felipefcunica

Apparently the _preproc function changes the amount of characters in the text. Could this be the source of the bug? Take a look: Using the same input: ``` input =...

I got a satisfactory result using the following function to run Cogroo4py with `adjustFactor == 1`: ``` def adjustedGrammarCheck(input:str,adjustFactor:int): doc = cogroo.grammar_check(input) adjustedMistakes = [] for index in range(len(doc.mistakes)): error...

> It is probably necessary due to the possibility of having multiple characters associated with the same userID. But if the character ID is a primary key independent of the...

In python it is good practice to use configuration parameters in the form of objects. In this way we can configure a single file that contains configuration for different environments...