SaratM

Results 2 issues of SaratM

Hi, I am using sequence tagger as below. ```python from flair.data import Sentence from flair.models import SequenceTagger tagger = SequenceTagger.load('/users/user/flair/ner-english-ontonotes-large/pytorch_model.bin') sentence = Sentence("sample text") tagger.predict(sentence) ``` Seems like SequenceTagger is...

question

**Description** I have a found a bug when using the model load api to re-load an already loaded python backend model in explicit mode. To explain the scenario, We have...

bug
investigating