Peerawat2024
commited on
Commit
•
aea6cc2
1
Parent(s):
33ec535
Update README.md
Browse files
README.md
CHANGED
@@ -3,19 +3,30 @@ license: unknown
|
|
3 |
base_model:
|
4 |
- airesearch/wangchanberta-base-att-spm-uncased
|
5 |
---
|
6 |
-
|
7 |
# AmbatronBERTa
|
8 |
|
9 |
-
AmbatronBERTa is a Thai language model fine-tuned for text classification tasks.
|
10 |
|
11 |
## Model Description
|
12 |
-
AmbatronBERTa is
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
|
14 |
## How to Use
|
15 |
-
To use
|
16 |
|
17 |
```python
|
18 |
from transformers import AutoTokenizer, AutoModelForSequenceClassification
|
19 |
|
|
|
20 |
tokenizer = AutoTokenizer.from_pretrained("Peerawat2024/AmbatronBERTa")
|
21 |
model = AutoModelForSequenceClassification.from_pretrained("Peerawat2024/AmbatronBERTa")
|
|
|
3 |
base_model:
|
4 |
- airesearch/wangchanberta-base-att-spm-uncased
|
5 |
---
|
|
|
6 |
# AmbatronBERTa
|
7 |
|
8 |
+
AmbatronBERTa is a Thai language model fine-tuned specifically for text classification tasks, built upon the WangchanBERTa architecture.
|
9 |
|
10 |
## Model Description
|
11 |
+
AmbatronBERTa is designed to handle the complexities of the Thai language. It has been fine-tuned on a dataset of over 3,000 research papers to improve classification accuracy. Leveraging the transformer-based WangchanBERTa, it efficiently captures the nuances of Thai text, making it suitable for classifying documents across multiple fields.
|
12 |
+
|
13 |
+
## Developers
|
14 |
+
AmbatronBERTa was developed by students at **King Mongkut's University of Technology North Bangkok**:
|
15 |
+
- **Peerawat Banpahan**
|
16 |
+
- **Waris Thongpho**
|
17 |
+
|
18 |
+
## Use Cases
|
19 |
+
AmbatronBERTa can be applied to a wide range of tasks, such as:
|
20 |
+
- **Research Classification:** Categorizing academic papers into relevant topics.
|
21 |
+
- **Document Organization:** Classifying articles, blogs, and other documents by themes.
|
22 |
+
- **Sentiment Analysis:** Analyzing sentiment in Thai-language texts across various contexts.
|
23 |
|
24 |
## How to Use
|
25 |
+
To use AmbatronBERTa with the `transformers` library:
|
26 |
|
27 |
```python
|
28 |
from transformers import AutoTokenizer, AutoModelForSequenceClassification
|
29 |
|
30 |
+
# Load the tokenizer and model
|
31 |
tokenizer = AutoTokenizer.from_pretrained("Peerawat2024/AmbatronBERTa")
|
32 |
model = AutoModelForSequenceClassification.from_pretrained("Peerawat2024/AmbatronBERTa")
|