Update README.md
Browse files
README.md
CHANGED
|
@@ -48,25 +48,27 @@ Batch Size: 64 <br>
|
|
| 48 |
[Prof. V Vijaya Saradhi](https://www.linkedin.com/in/vijaya-saradhi-a90a604/) <br>
|
| 49 |
[Prof. Ashish Anand](https://www.linkedin.com/in/anandashish/)
|
| 50 |
|
| 51 |
-
APTFiNER is a part of the [AWED-FiNER](https://
|
| 52 |
|
| 53 |
## Sample Usage
|
| 54 |
|
| 55 |
-
|
| 56 |
-
|
|
|
|
|
|
|
| 57 |
```python
|
| 58 |
-
from smolagents import CodeAgent, HfApiModel
|
| 59 |
from tool import AWEDFiNERTool
|
| 60 |
|
| 61 |
-
|
| 62 |
-
|
|
|
|
| 63 |
|
| 64 |
-
|
| 65 |
-
|
|
|
|
|
|
|
| 66 |
|
| 67 |
-
|
| 68 |
-
# Case: Processing a vulnerable language (Bodo)
|
| 69 |
-
agent.run("Recognize the named entities in this Bodo sentence: 'बिथाङा दिल्लियाव थाङो।'")
|
| 70 |
```
|
| 71 |
|
| 72 |
## Citation
|
|
@@ -82,6 +84,15 @@ If you use this model, please cite the following papers:
|
|
| 82 |
year={2026}
|
| 83 |
}
|
| 84 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 85 |
@inproceedings{kaushik2026sampurner,
|
| 86 |
title={SampurNER: Fine-grained Named Entity Recognition Dataset for 22 Indian Languages},
|
| 87 |
author={Kaushik, Prachuryya and Anand, Ashish},
|
|
|
|
| 48 |
[Prof. V Vijaya Saradhi](https://www.linkedin.com/in/vijaya-saradhi-a90a604/) <br>
|
| 49 |
[Prof. Ashish Anand](https://www.linkedin.com/in/anandashish/)
|
| 50 |
|
| 51 |
+
APTFiNER is a part of the [AWED-FiNER collection](https://huggingface.co/collections/prachuryyaIITG/awed-finer). Please check: [**Paper**](https://huggingface.co/papers/2601.10161) | [**Agentic Tool**](https://github.com/PrachuryyaKaushik/AWED-FiNER) | [**Interactive Demo**](https://huggingface.co/spaces/prachuryyaIITG/AWED-FiNER)
|
| 52 |
|
| 53 |
## Sample Usage
|
| 54 |
|
| 55 |
+
The AWED-FiNER agentic tool can be used to interact with expert models trained using this framework. Below is an example:
|
| 56 |
+
```bash
|
| 57 |
+
pip install smolagents gradio_client
|
| 58 |
+
```
|
| 59 |
```python
|
|
|
|
| 60 |
from tool import AWEDFiNERTool
|
| 61 |
|
| 62 |
+
tool = AWEDFiNERTool(
|
| 63 |
+
space_id="prachuryyaIITG/AWED-FiNER"
|
| 64 |
+
)
|
| 65 |
|
| 66 |
+
result = tool.forward(
|
| 67 |
+
text="Jude Bellingham joined Real Madrid in 2023.",
|
| 68 |
+
language="English"
|
| 69 |
+
)
|
| 70 |
|
| 71 |
+
print(result)
|
|
|
|
|
|
|
| 72 |
```
|
| 73 |
|
| 74 |
## Citation
|
|
|
|
| 84 |
year={2026}
|
| 85 |
}
|
| 86 |
|
| 87 |
+
@misc{kaushik2026awedfiner,
|
| 88 |
+
title = {AWED-FiNER: Agents, Web Applications, and Expert Detectors for Fine-grained Named Entity Recognition across 36 Languages for 6.6 Billion Speakers},
|
| 89 |
+
author = {Kaushik, Prachuryya and Anand, Ashish},
|
| 90 |
+
year = {2026},
|
| 91 |
+
note = {arXiv preprint, submitted},
|
| 92 |
+
archivePrefix= {arXiv},
|
| 93 |
+
eprint = {submit/7163987}
|
| 94 |
+
}
|
| 95 |
+
|
| 96 |
@inproceedings{kaushik2026sampurner,
|
| 97 |
title={SampurNER: Fine-grained Named Entity Recognition Dataset for 22 Indian Languages},
|
| 98 |
author={Kaushik, Prachuryya and Anand, Ashish},
|