File size: 1,279 Bytes
5196a68
51c8842
5196a68
 
 
 
 
 
 
 
 
 
1cc5bcc
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
39d0662
 
 
8f24800
39d0662
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
---
license: cc-by-nc-3.0
metrics:
- accuracy
- f1
- recall
- precision
base_model:
- distilbert/distilbert-base-uncased
tags:
- event_extraction
- email
---
# DistilBERT-based Named Entity Recognition (NER) Model for Event Extraction

This repository contains a fine-tuned `DistilBERT` model for extracting **event-related entities** such as:

- **Event Name**
- **Date**
- **Time**
- **Venue**

The model is trained on a custom NER dataset with the goal of accurately parsing event details from plain text, such as emails or notifications.

---

## Model Details

- **Base Model:** `distilbert-base-uncased`
- **Task:** Token Classification (NER)
- **Fine-Tuned On:** Custom annotated dataset for events
- **Framework:** [HuggingFace Transformers](https://huggingface.co/transformers/)
- **Library Versions:**
  - `transformers`: 4.25+
  - `datasets`: 2.10+
  - `torch`: 1.13+
  - `seqeval`: for evaluation metrics

---

## Labels Used

```text
EVENT_NAME
DATE
TIME
VENUE
O  # Outside any entity
```
---

## Contributors

- [Thiyaga158](https://huggingface.co/Thiyaga158)
- [Hansika08](https://huggingface.co/Hansika08)

---

## License

This model is licensed under [CC BY-NC 3.0](https://creativecommons.org/licenses/by-nc/3.0/).  
For research and educational use only.

---