asahi417 commited on
Commit
8f5a377
·
1 Parent(s): a9d0d95

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +4 -4
README.md CHANGED
@@ -7,7 +7,7 @@ metrics:
7
  - rouge-l
8
  - bertscore
9
  - moverscore
10
- language: en
11
  datasets:
12
  - lmqg/qg_zhquad
13
  pipeline_tag: text2text-generation
@@ -70,10 +70,10 @@ This model is fine-tuned version of [google/mt5-small](https://huggingface.co/go
70
  from lmqg import TransformersQG
71
 
72
  # initialize model
73
- model = TransformersQG(language="en", model="lmqg/mt5-small-zhquad-ae")
74
 
75
  # model prediction
76
- answers = model.generate_a("William Turner was an English painter who specialised in watercolour landscapes")
77
 
78
  ```
79
 
@@ -82,7 +82,7 @@ answers = model.generate_a("William Turner was an English painter who specialise
82
  from transformers import pipeline
83
 
84
  pipe = pipeline("text2text-generation", "lmqg/mt5-small-zhquad-ae")
85
- output = pipe("<hl> Beyonce further expanded her acting career, starring as blues singer Etta James in the 2008 musical biopic, Cadillac Records. <hl> Her performance in the film received praise from critics, and she garnered several nominations for her portrayal of James, including a Satellite Award nomination for Best Supporting Actress, and a NAACP Image Award nomination for Outstanding Supporting Actress.")
86
 
87
  ```
88
 
 
7
  - rouge-l
8
  - bertscore
9
  - moverscore
10
+ language: zh
11
  datasets:
12
  - lmqg/qg_zhquad
13
  pipeline_tag: text2text-generation
 
70
  from lmqg import TransformersQG
71
 
72
  # initialize model
73
+ model = TransformersQG(language="zh", model="lmqg/mt5-small-zhquad-ae")
74
 
75
  # model prediction
76
+ answers = model.generate_a("南安普敦的警察服务由汉普郡警察提供。南安普敦行动的主要基地是一座新的八层专用建筑,造价3000万英镑。该建筑位于南路,2011年启用,靠近南安普敦中央火车站。此前,南安普顿市中心的行动位于市民中心西翼,但由于设施老化,加上计划在旧警察局和地方法院建造一座新博物馆,因此必须搬迁。在Portswood、Banister Park、Hille和Shirley还有其他警察局,在南安普顿中央火车站还有一个英国交通警察局。")
77
 
78
  ```
79
 
 
82
  from transformers import pipeline
83
 
84
  pipe = pipeline("text2text-generation", "lmqg/mt5-small-zhquad-ae")
85
+ output = pipe('南安普敦的警察服务由汉普郡警察提供。 南安普敦行动的主要基地是一座新的八层专用建筑,造价3000万英镑。 <hl> 该建筑位于南路,2011年启用,靠近 南安普敦中央 火车站。 <hl> 此前,南安普顿市中心的行动位于市民中心西翼,但由于设施老化,加上计划在旧警察局和地方法院建造一座新博物馆,因此必须搬迁。 在Portswood、Banister Park、Hille和Shirley还有其他警察局,在南安普顿中央火车站还有一个英国交通警察局。')
86
 
87
  ```
88