Instructions to use ctrlbuzz/bert-addresses with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use ctrlbuzz/bert-addresses with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("token-classification", model="ctrlbuzz/bert-addresses")# Load model directly from transformers import AutoTokenizer, AutoModelForTokenClassification tokenizer = AutoTokenizer.from_pretrained("ctrlbuzz/bert-addresses") model = AutoModelForTokenClassification.from_pretrained("ctrlbuzz/bert-addresses", device_map="auto") - Notebooks
- Google Colab
- Kaggle
| # For reference on model card metadata, see the spec: https://github.com/huggingface/hub-docs/blob/main/modelcard.md?plain=1 | |
| # Doc / guide: https://huggingface.co/docs/hub/model-cards | |
| {} | |
| # Model Card for Model ID | |
| This model is developed to tag Names, Organisations and addresses. I have used a data combined fro Conll, ontonotes5, and a custom address dataset that was self made. Cleaned | |
| out the tags. Detects U.S addresses. | |
| [\"O\", \"B-ORG\", \"I-ORG\", \"B-PER\", \"I-PER\",'B-addr','I-addr'] | |
| ### Model Description | |
| - **Developed by:** ctrlbuzz | |
| - **Model type:** Bert | |
| - **Language(s) (NLP):** Named Entity recognition | |
| - **Finetuned from model [optional]:** bert-base-cased | |
| ## Uses | |
| ### Direct Use | |
| ```python | |
| from transformers import AutoTokenizer, AutoModelForTokenClassification | |
| from transformers import pipeline | |
| tokenizer = AutoTokenizer.from_pretrained('bert-base-cased') | |
| model = AutoModelForTokenClassification.from_pretrained("ctrlbuzz/bert-addresses") | |
| nlp = pipeline("ner", model=model, tokenizer=tokenizer) | |
| example = "While Maria was representing Johnson & Associates at a conference in Spain, she mailed me a letter from her new office at 123 Elm St., Apt. 4B, Springfield, IL.", | |
| print(nlp(example)) | |
| ``` | |