Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language:
|
| 3 |
+
- zh
|
| 4 |
+
---
|
| 5 |
+
# Tiny BERT 4L zh
|
| 6 |
+
This is a backup repo of [the official repo](https://huggingface.co/huawei-noah/TinyBERT_4L_zh).
|
| 7 |
+
|
| 8 |
+
Now the model can be loaded with
|
| 9 |
+
```python
|
| 10 |
+
from transformers import AutoModel
|
| 11 |
+
model = AutoModel.from_pretrained("JeremiahZ/TinyBERT_4L_zh_backup")
|
| 12 |
+
```
|
| 13 |
+
|
| 14 |
+
More information on this model can be found [here](https://github.com/huawei-noah/Pretrained-Language-Model/tree/master/TinyBERT).
|