flair icon indicating copy to clipboard operation
flair copied to clipboard

A very simple framework for state-of-the-art Natural Language Processing (NLP)

Results 253 flair issues
Sort by recently updated
recently updated
newest added

You can find the list of changes in konoha 5.0 here: https://github.com/himkt/konoha/releases/tag/v5.0.0 None of them appear to affect flair. (In general, I recommend against potentially unnecessary pins in libraries. The...

A clear and concise description of what you want to know.

question

Hello, I am using following guide as an example: https://github.com/huggingface/notebooks/blob/main/sagemaker/12_batch_transform_inference/sagemaker-notebook.ipynb hub = { 'HF_MODEL_ID':'flair/ner-english', 'HF_TASK':'token-classification' } huggingface_model = HuggingFaceModel( env=hub, # configuration for loading model from Hub role=role, # iam...

I encounter an issue when using the default dutch ner model as a NER classifier. When parsing some words are not recognized and throw an index error (Index out of...

question

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

Hi, I want to fine-tuning flair on a domain specific dataset, what I want to know is how many epochs are suitable? And how much time would you estimate to...

question

the model.summary() does not work which could be obvious since FLAIR has its own model. The print(model) works however it prints the model layers without giving a summary. Can anyone...

question

I got very different result when using tars.predict in a function in python with an udf wrapping the function and using it in spark sql. Here is the code: ```...

bug

Hello ! **Describe the bug** I'm trying to reproduce experiments from - https://huggingface.co/flair/ner-english-ontonotes-large#training-script-to-train-this-model - https://github.com/flairNLP/flair/blob/master/resources/docs/EXPERIMENTS.md#ontonotes-named-entity-recognition-english **To Reproduce** download official archive from LDC, etc ... and launch the training script **Expected...

bug

Hello, I am currently in the process of writing a paper on the creation and use of an anomaly detection and correction software customized for expert-annotation project, that is used...

question