Synthetic Data Generation
SyntheticDataGeneration
Bases: PipelineStep
Source code in textforge/synthetic.py
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 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 | |
__init__(api_key, labels, query='', model='gpt-4o-mini', rate_limit_interval=0.2, base_url=None, sync_client=False)
Initialize SyntheticDataGeneration.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
api_key
|
str
|
API key for authentication. |
required |
labels
|
list[str]
|
List of labels for classification. |
required |
query
|
str
|
Additional query context. Defaults to "". |
''
|
model
|
str
|
Model name to use. Defaults to "gpt-4o-mini". |
'gpt-4o-mini'
|
rate_limit_interval
|
float
|
Interval between API calls. Defaults to 0.2. |
0.2
|
base_url
|
optional
|
Base URL for API endpoint. |
None
|
sync_client
|
bool
|
Flag to choose synchronous client. Defaults to False. |
False
|
Source code in textforge/synthetic.py
create_system_prompt(labels, query='')
Create a system prompt for text classification.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
labels
|
list[str]
|
List of classification labels. |
required |
query
|
str
|
Additional query to refine prompt. Defaults to "". |
''
|
Returns:
| Name | Type | Description |
|---|---|---|
str |
str
|
Constructed system prompt. |
Source code in textforge/synthetic.py
generate_text(data, system_prompt='You are a helpful AI assistant. Please provide a response to the following user query:', max_tokens=None)
async
Generate text for each row in the provided DataFrame asynchronously.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
data
|
DataFrame
|
Input data with text input in the first column. |
required |
system_prompt
|
str
|
System prompt for the API. Defaults to a helpful assistant prompt. |
'You are a helpful AI assistant. Please provide a response to the following user query:'
|
max_tokens
|
int
|
Maximum tokens to generate. Defaults to None. |
None
|
Returns:
| Type | Description |
|---|---|
DataFrame
|
pd.DataFrame: DataFrame with an added 'output' column containing generated responses. |
Source code in textforge/synthetic.py
print_stats(data)
Print statistics about the labelled data using rich formatting.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
data
|
DataFrame
|
DataFrame containing the results. |
required |
Source code in textforge/synthetic.py
run(data, max_tokens=None, max_tries=5)
Execute the pipeline synchronously or asynchronously based on client type.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
data
|
DataFrame
|
Input data with text. |
required |
max_tokens
|
int
|
Maximum tokens per API call. Defaults to None. |
None
|
max_tries
|
int
|
Maximum retries for valid classification. Defaults to 5. |
5
|
Returns:
| Type | Description |
|---|---|
DataFrame
|
pd.DataFrame: DataFrame with processed results. |
Source code in textforge/synthetic.py
run_async(data, max_tokens=None, max_tries=5)
async
Run the asynchronous text classification pipeline.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
data
|
DataFrame
|
Input data with text input. |
required |
max_tokens
|
int
|
Maximum tokens for generation. Defaults to None. |
None
|
max_tries
|
int
|
Maximum reattempts for valid classification. Defaults to 5. |
5
|
Returns:
| Type | Description |
|---|---|
DataFrame
|
pd.DataFrame: DataFrame with classification results added. |
Source code in textforge/synthetic.py
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 | |
run_sync(data, max_tokens=None, max_tries=10)
Run the synchronous text classification pipeline.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
data
|
DataFrame
|
Input data with text. |
required |
max_tokens
|
int
|
Maximum tokens for generation. Defaults to None. |
None
|
max_tries
|
int
|
Maximum reattempts for valid classification. Defaults to 10. |
10
|
Returns:
| Type | Description |
|---|---|
DataFrame
|
pd.DataFrame: DataFrame with classification results added. |
Source code in textforge/synthetic.py
save(data, output_path)
Save the labelled data to a CSV file.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
data
|
DataFrame
|
DataFrame containing processed data. |
required |
output_path
|
str
|
Directory path where the file will be saved. |
required |