Upload IndicBERTv2-CRF model (80% F1 on Indian addresses) bea79cc verified
x commited on
How to use howdoiuse-keyboard/indian-address-parser-model with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="howdoiuse-keyboard/indian-address-parser-model") # Load model directly
from transformers import AutoModel
model = AutoModel.from_pretrained("howdoiuse-keyboard/indian-address-parser-model", dtype="auto")