GLiNER icon indicating copy to clipboard operation
GLiNER copied to clipboard

Generalist and Lightweight Model for Named Entity Recognition (Extract any entity types from texts) @ NAACL 2024

Results 45 GLiNER issues
Sort by recently updated
recently updated
newest added

Hi. I want to finetune a model on data where some of them do not contain entities (so that there is less fp). I tried to do it with such...

Model version : "knowledgator/gliner-multitask-large-v0.5", "urchade/gliner_multi-v2.1", Issue : I used those 2 models to detect ["name_surname", "email","organization", "phone_number"], but some returned entities didn't bring any useful information. Examples : 'phone_number': ['numéro',...

Hello I am unable to load a model in offline mode (i.e., from a local directory). Surprisingly, this works for the model `urchade/gliner_multi` but not for the model `urchade/gliner_multi-v2.1`. Other...

Excellent job! I'd like to inquire about the 'max_types' setting. Suppose 'max_types' is configured to a limit of 25; does this imply that we cannot employ more than 25 types...

Is anyone working on GLiNER for MLX by chance?

Hi! I've been experimenting with this model for a few things, and so far I like where it's going. I want to attempt some fine-tuning, so I followed the same...

I finetuned gliner small v2.1 model and created onnx version of the same model using the convert_to_onnx.ipynb exmple code. When I compared the inference time of both models, the onnx...

I am fine-tuning the [GLiNER-medium-v2.1] on custom data and need to apply quantization for performance optimization. I am looking for guidance on: Supported Quantization Methods: 1. Which methods (e.g., Post-training,...

I hope you're doing well. I have a question regarding the usage of a custom tokenizer after training a model using your library. I have trained a model using the...

I'm using the PII model using the following script: ``` model = GLiNER.from_pretrained("urchade/gliner_multi_pii-v1") model.eval() entities = model.predict_entities(text, labels) for entity in entities: print(entity["text"], "=>", entity["label"], "=>", entity["score"] ) ``` If...