-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdataset_llm_templates.py
236 lines (168 loc) · 8.24 KB
/
dataset_llm_templates.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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
from langchain.prompts import ChatPromptTemplate
from langchain.output_parsers import ResponseSchema
from langchain.output_parsers import StructuredOutputParser
import pandas as pd
def langchain_templates(X_train_orig, y_train_orig, dataset):
response_schemas = []
df_orig = pd.concat([X_train_orig, y_train_orig], axis=1)
for idx, col in enumerate(list(df_orig.columns)):
if (
col == "is_dead"
or col == "mortCancer"
or col == "death"
or col == "death_all"
):
resp = ResponseSchema(
name=col,
description=f"label if patient dead or not, {col}",
)
elif col == "y":
resp = ResponseSchema(
name="target",
description=f"binary label, {col}",
)
elif col == "salary":
resp = ResponseSchema(
name="target",
description=f"label if salary above 50K or not, {col}",
)
else:
resp = ResponseSchema(
name=col,
description=f"feature column",
)
response_schemas.append(resp)
output_parser = StructuredOutputParser.from_response_schemas(response_schemas)
format_instructions = output_parser.get_format_instructions()
if dataset == "covid":
print("covid")
generator_template = """\
You are a synthetic data generator.
Your goal is to produce data which mirrors \
the given examples in causal structure and feature and label distributions \
but also produces as diverse samples as possible.
I will give you real examples first
Leverage your medical knowledge about covid and brazil generate 1000 realistic but diverse samples.
example data: {data}
{format_instructions}
DO NOT COPY THE EXAMPLES but generate realistic but new and diverse samples which have the correct label conditioned on the features.
"""
if dataset == "cutract":
print("cutract")
generator_template = """\
You are a synthetic data generator.
Your goal is to produce data which mirrors \
the given examples in causal structure and feature and label distributions \
but also produces as diverse samples as possible
I will give you real examples first
Leverage your medical knowledge about prostate cancer in the UK to generate 1000 realistic but diverse samples.
example data: {data}
{format_instructions}
DO NOT COPY THE EXAMPLES but generate realistic but new and diverse samples which have the correct label conditioned on the features.
"""
if dataset == "compas":
print("compas")
generator_template = """\
You are a synthetic data generator.
Your goal is to produce data which mirrors \
the given examples in causal structure and feature and label distributions \
but also produces as diverse samples as possible
I will give you real examples first
Leverage your knowledge about criminal recividsm to generate 1000 realistic but diverse samples.
example data: {data}
{format_instructions}
DO NOT COPY THE EXAMPLES but generate realistic but new and diverse samples which have the correct label conditioned on the features.
"""
if dataset == "seer":
print("seer")
generator_template = """\
You are a synthetic data generator.
Your goal is to produce data which mirrors \
the given examples in causal structure and feature and label distributions \
but also produces as diverse samples as possible
I will give you real examples first
Leverage your medical knowledge about prostate cancer in the USA to generate 1000 realistic but diverse samples.
example data: {data}
{format_instructions}
DO NOT COPY THE EXAMPLES but generate realistic but new and diverse samples which have the correct label conditioned on the features.
"""
if dataset == "support":
print("support")
generator_template = """\
You are a synthetic data generator.
You produce data which mirrors \
the given examples in structure and distributions \
but also produces diverse samples
Use your medical knowledge about hospitalized patients to generate realistic but diverse samples.
example data: {data}
{format_instructions}
DO NOT COPY THE EXAMPLES
"""
if dataset == "maggic":
print("maggic")
generator_template = """\
You are a synthetic data generator.
Your goal is to produce data which mirrors \
the given examples in causal structure and feature and label distributions \
but also produces as diverse samples as possible
I will give you real examples first
Leverage your medical knowledge about heart failure patients to generate 1000 realistic but diverse samples.
example data: {data}
{format_instructions}
DO NOT COPY THE EXAMPLES but generate realistic but new and diverse samples which have the correct label conditioned on the features.
"""
if dataset == "adult":
print("adult")
generator_template = """\
You are a synthetic data generator.
Your goal is to produce data which mirrors \
the given examples in causal structure and feature and label distributions \
but also produces as diverse samples as possible
I will give you real examples first
Leverage your knowledge of salary above 50K based on demographic features to generate 1000 realistic but diverse samples.
example data: {data}
{format_instructions}
DO NOT COPY THE EXAMPLES but generate realistic but new and diverse samples which have the correct label conditioned on the features.
"""
if dataset == "higgs":
print("higgs")
generator_template = """\
You are a synthetic data generator.
Your goal is to produce data which mirrors \
the given examples in causal structure and feature and label distributions \
but also produces as diverse samples as possible
I will give you real examples first
Leverage your knowledge of particle physics and higgs bosons to generate 1000 realistic but diverse samples.
example data: {data}
{format_instructions}
DO NOT COPY THE EXAMPLES but generate realistic but new and diverse samples which have the correct label conditioned on the features.
"""
if dataset == "bio":
print("bio")
generator_template = """\
You are a synthetic data generator.
Your goal is to produce data which mirrors \
the given examples in causal structure and feature and label distributions \
but also produces as diverse samples as possible
I will give you real examples first
Leverage your knowledge of chemical properties of molecules causing a biological response to generate 1000 realistic but diverse samples.
example data: {data}
{format_instructions}
DO NOT COPY THE EXAMPLES but generate realistic but new and diverse samples which have the correct label conditioned on the features.
"""
if dataset == "drug":
print("drug")
generator_template = """\
You are a synthetic data generator.
Your goal is to produce data which mirrors \
the given examples in causal structure and feature and label distributions \
but also produces as diverse samples as possible
I will give you real examples first
Leverage your knowledge of features leading to drug usage and consumption to generate 1000 realistic but diverse samples.
example data: {data}
{format_instructions}
DO NOT COPY THE EXAMPLES but generate realistic but new and diverse samples which have the correct label conditioned on the features.
"""
df_orig = df_orig.sample(frac=1).reset_index(drop=True)
prompt = ChatPromptTemplate.from_template(template=generator_template)
return prompt, generator_template, format_instructions, df_orig