-
Notifications
You must be signed in to change notification settings - Fork 1
/
gpt.py
163 lines (135 loc) · 6.31 KB
/
gpt.py
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
"""Creates the Example and GPT classes for a user to interface with the OpenAI
API."""
import openai
import uuid
def set_openai_key(key):
"""Sets OpenAI key."""
openai.api_key = key
class Example:
"""Stores an input, output pair and formats it to prime the model."""
def __init__(self, inp, out):
self.input = inp
self.output = out
self.id = uuid.uuid4().hex
def get_input(self):
"""Returns the input of the example."""
return self.input
def get_output(self):
"""Returns the intended output of the example."""
return self.output
def get_id(self):
"""Returns the unique ID of the example."""
return self.id
def as_dict(self):
return {
"input": self.get_input(),
"output": self.get_output(),
"id": self.get_id(),
}
class GPT:
"""The main class for a user to interface with the OpenAI API.
A user can add examples and set parameters of the API request.
"""
def __init__(self, logprobs = 3,
frequency_penalty = 0,
presence_penalty = 0,
engine='instruct-davinci-beta',
temperature=0.0,
max_tokens=100,
input_prefix="Tweet: ",
input_suffix="\n",
output_prefix="Sentiment:",
output_suffix="\n\n",
stop="\n",
top_p = 0,
n=1,
append_output_prefix_to_query=True):
self.examples = {}
self.engine = engine
self.temperature = temperature
self.max_tokens = max_tokens
self.input_prefix = input_prefix
self.input_suffix = input_suffix
self.output_prefix = output_prefix
self.output_suffix = output_suffix
self.append_output_prefix_to_query = append_output_prefix_to_query
self.stop = stop
self.top_p = top_p
self.n = n
self.logprobs = logprobs
self.frequency_penalty = frequency_penalty
self.presence_penalty = presence_penalty
#self.stop = (output_suffix + input_prefix).strip()
def add_example(self, ex):
"""Adds an example to the object.
Example must be an instance of the Example class.
"""
assert isinstance(ex, Example), "Please create an Example object."
self.examples[ex.get_id()] = ex
def delete_example(self, id):
"""Delete example with the specific id."""
if id in self.examples:
del self.examples[id]
def get_example(self, id):
"""Get a single example."""
return self.examples.get(id, None)
def get_all_examples(self):
"""Returns all examples as a list of dicts."""
return {k: v.as_dict() for k, v in self.examples.items()}
def get_prime_text(self):
"""Formats all examples to prime the model."""
return "".join(
[self.format_example(ex) for ex in self.examples.values()])
def get_engine(self):
"""Returns the engine specified for the API."""
return self.engine
def get_temperature(self):
"""Returns the temperature specified for the API."""
return self.temperature
def get_max_tokens(self):
"""Returns the max tokens specified for the API."""
return self.max_tokens
def craft_query(self, prompt):
"""Creates the query for the API request."""
#q = "Given a tweet, classify it into one of 4 categories: high activation (Surprised, Amazement, Ecstasy, Excited, Rage, Shock, Terror, Alert), medium activation (Tense, Alarmed, Frustrated, Happy, Delighted, Nervous, Fear, Envy), medium deactivation (Disgusted, Depressed, Sad, Content, Relaxed, Satisfied, Serene, Empathetic) or high deactivation (Bored, Tired, Calm, Sleepy, Sorrow, Grief)." + "\n"
q = "Given a tweet, classify it into one of 4 categories: high activation, medium activation, medium deactivation or high deactivation." + "\n"
q += self.get_prime_text() + self.input_prefix + prompt + self.input_suffix
#q += self.input_prefix + prompt + self.input_suffix
if self.append_output_prefix_to_query:
q = q + self.output_prefix
return q
def submit_request(self, prompt):
"""Calls the OpenAI API with the specified parameters."""
# response = openai.Completion.create(engine=self.get_engine(),
# prompt=self.craft_query(prompt),
# max_tokens=self.get_max_tokens(),
# temperature=self.get_temperature(),
# top_p=0,
# n=1,
# stream=False,
# stop=self.stop,
# logprobs = self.logprobs,
# frequency_penalty = self.frequency_penalty,
# presence_penalty = self.presence_penalty)
response = openai.Completion.create(engine=self.get_engine(),
prompt=prompt,
max_tokens=self.get_max_tokens(),
temperature=self.get_temperature(),
top_p=self.top_p,
n=self.n,
stream=False,
stop=self.stop,
logprobs=self.logprobs,
frequency_penalty=self.frequency_penalty,
presence_penalty=self.presence_penalty)
return response
#return self.craft_query(prompt)
def get_top_reply(self, prompt):
"""Obtains the best result as returned by the API."""
response = self.submit_request(prompt)
return response['choices'][0]['text']
def format_example(self, ex):
"""Formats the input, output pair."""
return self.input_prefix + ex.get_input(
) + self.input_suffix + self.output_prefix + ex.get_output(
) + self.output_suffix