aamcintosh

Results 4 comments of aamcintosh

I have also noted inconsistent scores. The code I was using went like this: ``` def get_lang_detector(nlp, name): return LanguageDetector() eng_nlp = spacy.load("en_core_web_lg") Language.factory("language_detector", func=get_lang_detector) eng_nlp.add_pipe('language_detector', last=True) ........................................... docs =...

Unfortunately setting the seed only solves half the problem. Once you set the seed, you get the same score every time for the same text. However, if you change the...

5 is just a fairly arbitrary small number. 3 is just a little too small. Why multiple tries? Setting the seed just hides the inconsistent behavior. If I use two...

Here is a similar issue. Consider the following: `typedef struct {` ` unsigned int n;` ` unsigned int **r;` `}S;` `extern void init(unsigned int *x);` `void foo(S *p) {` `...