Update README.md
Browse files
README.md
CHANGED
@@ -1 +1,5 @@
|
|
1 |
-
Fine tuning LayoutLMv2 model on Vietnamese bill dataset
|
|
|
|
|
|
|
|
|
|
1 |
+
Fine tuning LayoutLMv2 model on Vietnamese bill dataset
|
2 |
+
```python
|
3 |
+
from transformers import LayoutLMv2ForTokenClassification
|
4 |
+
model = LayoutLMv2ForTokenClassification.from_pretrained('cuongngm/layoutlm-bill', num_labels=len(labels))
|
5 |
+
```
|