prachuryyaIITG commited on
Commit
1b89814
·
verified ·
1 Parent(s): eece4fe

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +22 -11
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://github.com/PrachuryyaKaushik/AWED-FiNER) ecosystem: [**Paper**](https://huggingface.co/papers/2601.10161) | [**GitHub**](https://github.com/PrachuryyaKaushik/AWED-FiNER) | [**Interactive Demo**](https://huggingface.co/spaces/prachuryyaIITG/AWED-FiNER)
52
 
53
  ## Sample Usage
54
 
55
- You can use the AWED-FiNER agentic tool to interact with expert models trained using this framework. Below is an example using the `smolagents` library:
56
-
 
 
57
  ```python
58
- from smolagents import CodeAgent, HfApiModel
59
  from tool import AWEDFiNERTool
60
 
61
- # Initialize the expert tool
62
- ner_tool = AWEDFiNERTool()
 
63
 
64
- # Initialize the agent (using a model of your choice)
65
- agent = CodeAgent(tools=[ner_tool], model=HfApiModel())
 
 
66
 
67
- # The agent will automatically use AWED-FiNER for specialized NER
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},