--- language: en license: apache-2.0 tags: - gliner - named-entity-recognition - ner datasets: - custom --- # Model Card for gliner_finetuned_v1 This is a GLiNER model fine-tuned for named entity recognition. ## Model Details - **Model Type:** gliner - **Max Sequence Length:** 768 - **Base Model:** unknown ## Intended Use This model is designed to recognize and extract named entities from text. ## Training Data This model was trained on a custom dataset. ## Performance Performance metrics and evaluation results should be included here. ## Limitations The model may not perform well on text significantly different from its training data. ## Usage ```python from gliner import GLiNER model = GLiNER.from_pretrained("yasin9999/gliner_finetuned_v1") entities = model.predict_entities( "Your text here", ["PERSON", "DATE_TIME", "ADDRESS", "PHONE_NUMBER", "EMAIL"], threshold=0.5 ) ```