Rohan Singh

Results 4 comments of Rohan Singh

I have a similar test case that is not working. If I remove the `begins_with` it works as expected ```python table.query( KeyConditionExpression='partition_key = :pk and begins_with( my_range_key, :rk)', FilterExpression=' contains(...

It can be used like this. ```python import spacy from spacy.language import Language from quickumls.spacy_component import SpacyQuickUMLS @Language.component('quickumls_component') def quickumls_component(doc): return SpacyQuickUMLS(nlp, )(doc) nlp.add_pipe('quickumls_component', last=True) doc = nlp(full_rpts.iloc[0]) ```

Hi, I have a Deephit model with competing risk trained on data from a hospital - I wanted to see if I can take data from other hospital and re-train...

> > It can be used like this. > > ```python > > import spacy > > from spacy.language import Language > > from quickumls.spacy_component import SpacyQuickUMLS > > >...