BERT的最好的朋友。
安装
Ernie需要Python 3.6或更高版本。
pip install ernie
微调
句子分类
from ernie import SentenceClassifier , Models
import pandas as pd
tuples = [( "This is a positive example. I'm very happy today." , 1 ),
( "This is a negative sentence. Everything was wrong today at work." , 0 )]
df = pd . D
1