Instructions to use prachuryyaIITG/FewNERD_English_MuRIL with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use prachuryyaIITG/FewNERD_English_MuRIL with Transformers:
# Load model directly from transformers import AutoTokenizer, AutoModelForTokenClassification tokenizer = AutoTokenizer.from_pretrained("prachuryyaIITG/FewNERD_English_MuRIL") model = AutoModelForTokenClassification.from_pretrained("prachuryyaIITG/FewNERD_English_MuRIL", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -20,8 +20,6 @@ library_name: transformers
|
|
| 20 |
|
| 21 |
This model is a fine-tuned version of `google/muril-large-cased` on the English [Few-NERD](https://huggingface.co/datasets/DFKI-SLT/few-nerd) dataset.
|
| 22 |
|
| 23 |
-
It is part of the [AWED-PIPER](https://github.com/PrachuryyaKaushik/AWED-PIPER) ecosystem: [**Paper**](https://huggingface.co/papers/2601.10161) | [**Agent for FgNER**](https://github.com/PrachuryyaKaushik/AWED-FiNER) | [**Web App for FgNER**](https://huggingface.co/spaces/prachuryyaIITG/AWED-FiNER) | [**Agent for PII Protection**](https://github.com/PrachuryyaKaushik/AWED-PIPER) | [**Web App for PII Protection**](https://huggingface.co/spaces/prachuryyaIITG/AWED_PII_Protector)
|
| 24 |
-
|
| 25 |
The tagset of [Few-NERD](https://aclanthology.org/2021.acl-long.248.pdf) is a fine-grained tagset. The fine to coarse level mapping of the tags are as follows:
|
| 26 |
|
| 27 |
* Location : GPE, Body of Water, Island, Mountain, Park, Road/Transit, Other
|
|
@@ -45,6 +43,8 @@ Learning Rate: 5e-5 <br>
|
|
| 45 |
Weight Decay: 0.01 <br>
|
| 46 |
Batch Size: 64 <br>
|
| 47 |
|
|
|
|
|
|
|
| 48 |
## Sample Usage of Agentic Tool
|
| 49 |
|
| 50 |
The AWED-FiNER agentic tool can be used to interact with expert models trained using this framework. Below is an example:
|
|
|
|
| 20 |
|
| 21 |
This model is a fine-tuned version of `google/muril-large-cased` on the English [Few-NERD](https://huggingface.co/datasets/DFKI-SLT/few-nerd) dataset.
|
| 22 |
|
|
|
|
|
|
|
| 23 |
The tagset of [Few-NERD](https://aclanthology.org/2021.acl-long.248.pdf) is a fine-grained tagset. The fine to coarse level mapping of the tags are as follows:
|
| 24 |
|
| 25 |
* Location : GPE, Body of Water, Island, Mountain, Park, Road/Transit, Other
|
|
|
|
| 43 |
Weight Decay: 0.01 <br>
|
| 44 |
Batch Size: 64 <br>
|
| 45 |
|
| 46 |
+
It is part of the [AWED-PIPER](https://github.com/PrachuryyaKaushik/AWED-PIPER) ecosystem: [**Paper**](https://huggingface.co/papers/2601.10161) | [**Agent for FgNER**](https://github.com/PrachuryyaKaushik/AWED-FiNER) | [**Web App for FgNER**](https://huggingface.co/spaces/prachuryyaIITG/AWED-FiNER) | [**Agent for PII Protection**](https://github.com/PrachuryyaKaushik/AWED-PIPER) | [**Web App for PII Protection**](https://huggingface.co/spaces/prachuryyaIITG/AWED_PII_Protector)
|
| 47 |
+
|
| 48 |
## Sample Usage of Agentic Tool
|
| 49 |
|
| 50 |
The AWED-FiNER agentic tool can be used to interact with expert models trained using this framework. Below is an example:
|