File size: 562 Bytes
a5302c8
 
 
 
6201dbd
a5302c8
6201dbd
ce5e160
a5302c8
 
ce5e160
5b78297
 
41f623e
6201dbd
9b6c66f
43f10c8
9b6c66f
 
a5302c8
 
99acfd8
a5302c8
99acfd8
 
 
41bd193
99acfd8
 
41bd193
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
---
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:")
```