prachuryyaIITG commited on
Commit
cc6dc9b
·
verified ·
1 Parent(s): c44b02b

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +47 -7
README.md CHANGED
@@ -40,19 +40,59 @@ Learning Rate: 5e-5 <br>
40
  Weight Decay: 0.01 <br>
41
  Batch Size: 64 <br>
42
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
43
 
44
  ## Citation
45
 
46
  If you use this model, please cite the following papers:
47
 
48
  ```bibtex
49
- @inproceedings{kaushik2025classer,
50
- title = {{CLASSER}: Cross-lingual Annotation Projection enhancement through Script Similarity for Fine-grained Named Entity Recognition},
51
- author = {Kaushik, Prachuryya and Anand, Ashish},
52
- booktitle = {Proceedings of the 14th International Joint Conference on Natural Language Processing and the 4th Conference of the Asia-Pacific Chapter of the Association for Computational Linguistics},
53
- year = {2025},
54
- publisher = {Association for Computational Linguistics},
55
- note = {Main conference paper}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
56
  }
57
 
58
  @inproceedings{kaushik2026sampurner,
 
40
  Weight Decay: 0.01 <br>
41
  Batch Size: 64 <br>
42
 
43
+ ## Contributors
44
+ [Prachuryya Kaushik](https://www.linkedin.com/in/pkabundant/) <br>
45
+ [Prof. Ashish Anand](https://www.linkedin.com/in/anandashish/)
46
+
47
+ CLASSER 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)
48
+
49
+ ## Sample Usage
50
+
51
+ The AWED-FiNER agentic tool can be used to interact with expert models trained using this framework. Below is an example:
52
+ ```bash
53
+ pip install smolagents gradio_client
54
+ ```
55
+ ```python
56
+ from tool import AWEDFiNERTool
57
+
58
+ tool = AWEDFiNERTool(
59
+ space_id="prachuryyaIITG/AWED-FiNER"
60
+ )
61
+
62
+ result = tool.forward(
63
+ text="Jude Bellingham joined Real Madrid in 2023.",
64
+ language="English"
65
+ )
66
+
67
+ print(result)
68
+ ```
69
 
70
  ## Citation
71
 
72
  If you use this model, please cite the following papers:
73
 
74
  ```bibtex
75
+ @inproceedings{kaushik-anand-2025-classer,
76
+ title = "{CLASSER}: Cross-lingual Annotation Projection enhancement through Script Similarity for Fine-grained Named Entity Recognition",
77
+ author = "Kaushik, Prachuryya and
78
+ Anand, Ashish",
79
+ booktitle = "Proceedings of the 14th International Joint Conference on Natural Language Processing and the 4th Conference of the Asia-Pacific Chapter of the Association for Computational Linguistics",
80
+ month = dec,
81
+ year = "2025",
82
+ address = "Mumbai, India",
83
+ publisher = "The Asian Federation of Natural Language Processing and The Association for Computational Linguistics",
84
+ url = "https://aclanthology.org/2025.ijcnlp-long.94/",
85
+ pages = "1745--1760",
86
+ ISBN = "979-8-89176-298-5",
87
+ }
88
+
89
+ @misc{kaushik2026awedfiner,
90
+ title = {AWED-FiNER: Agents, Web Applications, and Expert Detectors for Fine-grained Named Entity Recognition across 36 Languages for 6.6 Billion Speakers},
91
+ author = {Kaushik, Prachuryya and Anand, Ashish},
92
+ year = {2026},
93
+ note = {arXiv preprint, submitted},
94
+ archivePrefix= {arXiv},
95
+ eprint = {submit/7163987}
96
  }
97
 
98
  @inproceedings{kaushik2026sampurner,