asahi417 commited on
Commit
8aae601
1 Parent(s): ef6f4e5

model update

Browse files
Files changed (1) hide show
  1. README.md +3 -3
README.md CHANGED
@@ -14,7 +14,7 @@ pipeline_tag: text2text-generation
14
  tags:
15
  - questions and answers generation
16
  widget:
17
- - text: " Beyonce further expanded her acting career, starring as blues singer Etta James in the 2008 musical biopic, Cadillac Records."
18
  example_title: "Questions & Answers Generation Example 1"
19
  model-index:
20
  - name: lmqg/t5-base-tweetqa-qag-np
@@ -89,7 +89,7 @@ from lmqg import TransformersQG
89
  # initialize model
90
  model = TransformersQG(language='en', model='lmqg/t5-base-tweetqa-qag-np')
91
  # model prediction
92
- question = model.generate_qa(list_context=["William Turner was an English painter who specialised in watercolour landscapes"], list_answer=["William Turner"])
93
 
94
  ```
95
 
@@ -100,7 +100,7 @@ from transformers import pipeline
100
  # initialize model
101
  pipe = pipeline("text2text-generation", 'lmqg/t5-base-tweetqa-qag-np')
102
  # question generation
103
- question = pipe(' Beyonce further expanded her acting career, starring as blues singer Etta James in the 2008 musical biopic, Cadillac Records.')
104
 
105
  ```
106
 
 
14
  tags:
15
  - questions and answers generation
16
  widget:
17
+ - text: "Beyonce further expanded her acting career, starring as blues singer Etta James in the 2008 musical biopic, Cadillac Records."
18
  example_title: "Questions & Answers Generation Example 1"
19
  model-index:
20
  - name: lmqg/t5-base-tweetqa-qag-np
 
89
  # initialize model
90
  model = TransformersQG(language='en', model='lmqg/t5-base-tweetqa-qag-np')
91
  # model prediction
92
+ question = model.generate_qa("William Turner was an English painter who specialised in watercolour landscapes")
93
 
94
  ```
95
 
 
100
  # initialize model
101
  pipe = pipeline("text2text-generation", 'lmqg/t5-base-tweetqa-qag-np')
102
  # question generation
103
+ question = pipe('Beyonce further expanded her acting career, starring as blues singer Etta James in the 2008 musical biopic, Cadillac Records.')
104
 
105
  ```
106