Peerawat2024 commited on
Commit
33ec535
1 Parent(s): d6ca0c3

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +17 -1
README.md CHANGED
@@ -2,4 +2,20 @@
2
  license: unknown
3
  base_model:
4
  - airesearch/wangchanberta-base-att-spm-uncased
5
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  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 based on the CamemBERT architecture, designed to handle Thai text. It is trained on a large, diverse corpus of Thai data.
13
+
14
+ ## How to Use
15
+ To use this model in your project, you can use the `transformers` library:
16
+
17
+ ```python
18
+ from transformers import AutoTokenizer, AutoModelForSequenceClassification
19
+
20
+ tokenizer = AutoTokenizer.from_pretrained("Peerawat2024/AmbatronBERTa")
21
+ model = AutoModelForSequenceClassification.from_pretrained("Peerawat2024/AmbatronBERTa")