File size: 588 Bytes
784367f
 
 
ffe496e
 
 
 
 
 
 
 
 
 
6ca933a
 
 
ffe496e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
---
license: apache-2.0
---
## 简介 Brief Introduction
1.1亿参数的ernie-1.0模型

## 模型信息 Released Model Information
当前发布的pytorch版本ERNIE-base,是从huggingface下载并修复vocab和config对不上的问题。

This released pytorch model is downloading from huggingface, then fixed the vocab and config not matching issue.

## 使用 Usage
```python
from transformers import AutoModelForMaskedLM, AutoTokenizer
tokenizer=AutoTokenizer.from_pretrained("xiaoqin/ernie-1.0-base-zh")
model=AutoModelForMaskedLM.from_pretrained("xiaoqin/ernie-1.0-base-zh")
```