How to use from the
Use from the
Transformers library
# Use a pipeline as a high-level helper
from transformers import pipeline

pipe = pipeline("token-classification", model="enigma-112/akai_ner")
# Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification

tokenizer = AutoTokenizer.from_pretrained("enigma-112/akai_ner")
model = AutoModelForTokenClassification.from_pretrained("enigma-112/akai_ner", device_map="auto")
Quick Links

Model Card for Model ID

The model recognizes 3 types of entities - pest names, seed types, crop names.

Model Details

Model Description

  • Developed by: SamagraX | Transforming Governance
  • Shared by [optional]: SamagraX | Transforming Governance
  • Model type: Named Entity Recognition for agriculture
  • Language(s) (NLP): Python
  • License: MIT
  • Finetuned from model [optional]: distilbert-base-uncased

Uses

Helps extracting the crop name, pest names and seed details from a query asked.

Downloads last month
5
Safetensors
Model size
66.4M params
Tensor type
F32
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Dataset used to train enigma-112/akai_ner