|
--- |
|
language: |
|
- en |
|
datasets: |
|
- natural_instructions |
|
- the_pile |
|
- cot |
|
- Muennighoff/P3 |
|
tags: |
|
- gpt |
|
pipeline_tag: text-generation |
|
inference: |
|
parameters: |
|
temperature: 0.1 |
|
widget: |
|
- text: "Is this review positive or negative? Review: Best cast iron skillet you will ever buy. Answer:" |
|
example_title: "Sentiment analysis" |
|
- text: "Where is Zurich? Ans:" |
|
example_title: "Question Answering" |
|
--- |
|
|
|
# Quick Start |
|
|
|
```python |
|
from transformers import pipeline |
|
|
|
pipe = pipeline(model='togethercomputer/GPT-JT-6B-v0') |
|
|
|
pipe("Where is Zurich? Ans:") |
|
``` |