Adriane Boyd

Results 349 comments of Adriane Boyd

Thanks for the info! I wasn't 100% sure from the original report that it was the loss and not maybe another bug in the scorer or elsewhere that we might...

Thanks for the note! This looks like an error in the API docs for a number of the pipeline components. Many of them do require at least one example in...

Yes, the custom extensions currently only use the span start/end and not any other attributes to distinguish spans. There's a related PR in progress #9708, but some of the serialization...

In order to run on a span, the dependency matcher first converts it into a doc with `Span.as_doc()`, which tries to copy all the data including the custom extensions, but...

Thanks for the report! Wow, that is one harmless-looking rule in the attribute ruler gone terribly wrong. It's trying to match `y'` in `y'all` or `yall` to produce the lemma...

I think the issue is that the values are parsed as JSON and JSON only supports double quotes. See: https://thinc.ai/docs/usage-config. So I don't think we want to try to modify...

Yes, the lookup table has a lot of issues. Our main German training corpus (TIGER) is also old enough that it primarily contains old spellings, so I'm not sure we...

I suspect that we're not going to want to make the `Span` extensions more complicated. It's useful that `Doc`, `Span`, and `Token` extensions are all keyed on the same index...

Hmm, the only workarounds I can think of off the top of my head involve keying the internal extension values based on the labels and kb_ids somehow, but I'm not...

Can you potentially provide the example text/texts and batch_size that lead to this exception?