generated_from_trainer

<!-- This model card has been generated automatically according to the information the Trainer had access to. You should probably proofread and complete it, then remove this comment. -->

bert-uncased-keyword-extractor

This model is a fine-tuned version of bert-base-uncased on an unknown dataset. It achieves the following results on the evaluation set:

Use a pipeline as a high-level helper

from transformers import pipeline

pipe = pipeline("token-classification", model="Azma-AI/bert-uncased-keyword-extractor")

Load model directly

from transformers import AutoTokenizer, AutoModelForTokenClassification

tokenizer = AutoTokenizer.from_pretrained("Azma-AI/bert-uncased-keyword-extractor")
model = AutoModelForTokenClassification.from_pretrained("Azma-AI/bert-uncased-keyword-extractor")