Update README.md
Browse files
README.md
CHANGED
|
@@ -48,6 +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 |
## Citation
|
| 52 |
|
| 53 |
If you use this model, please cite the following papers:
|
|
|
|
| 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
|
| 73 |
|
| 74 |
If you use this model, please cite the following papers:
|