mabrouk commited on
Commit
84308a8
1 Parent(s): c987989

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -19,7 +19,7 @@ Here is how to use this model with the [pipeline API](https://huggingface.co/tra
19
 
20
  ```python
21
  from transformers import pipeline
22
- summarizer = pipeline("summarization", model="mabrouk/reddit-summarizer-bart")
23
  review = """ I really like this book. It takes a step-by-step approach to introduce the reader to the IBM Q Experience, to the basics underlying quantum computing, and to the reality of the noise involved in the current machines. This introduction is technical and shows the user how to use the IBM system either directly through the GUI on their website or by running Python code on one's own machine. The text provides examples of small exercises to try and stimulates ideas of new things to try. The IBM Q Exp Qiskit software modules are identified and introduced - Terra, Aer, Ignis, and Aqua, as well as the backends that one can choose to do the computing. The book ends with two great chapters on quantum algorithms.
24
  """
25
  print(summarizer(review))
 
19
 
20
  ```python
21
  from transformers import pipeline
22
+ summarizer = pipeline("summarization", model="mabrouk/amazon-review-summarizer-bart")
23
  review = """ I really like this book. It takes a step-by-step approach to introduce the reader to the IBM Q Experience, to the basics underlying quantum computing, and to the reality of the noise involved in the current machines. This introduction is technical and shows the user how to use the IBM system either directly through the GUI on their website or by running Python code on one's own machine. The text provides examples of small exercises to try and stimulates ideas of new things to try. The IBM Q Exp Qiskit software modules are identified and introduced - Terra, Aer, Ignis, and Aqua, as well as the backends that one can choose to do the computing. The book ends with two great chapters on quantum algorithms.
24
  """
25
  print(summarizer(review))