-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathtasks-gallery.json
More file actions
387 lines (387 loc) · 11.9 KB
/
tasks-gallery.json
File metadata and controls
387 lines (387 loc) · 11.9 KB
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
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
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
[
{
"title": "Evaluation Task Example",
"description": "A sample evaluation task that runs an evaluation script and creates reports.",
"github_repo_url": "https://github.com/transformerlab/transformerlab-examples",
"github_repo_dir": "demo-eval-task",
"metadata": {
"category": "eval",
"modality": "text",
"framework": [
"huggingface"
]
},
"supportedAccelerators": {
"NVIDIA": {
"resources": {
"cpus": "2",
"memory": "4"
}
},
"AMD": {
"resources": {
"cpus": "2",
"memory": "4"
}
},
"AppleSilicon": {
"resources": {
"cpus": "2",
"memory": "4"
}
},
"cpu": {
"resources": {
"cpus": "2",
"memory": "4"
}
}
}
},
{
"title": "AutoTrain SFT Training",
"description": "SFT training task using Hugging Face AutoTrain. Requires a Hugging Face token in HF_TOKEN env var for model access.",
"github_repo_url": "https://github.com/transformerlab/transformerlab-examples",
"github_repo_dir": "autotrain-sft",
"metadata": {
"category": "finetuning",
"modality": "text",
"framework": [
"huggingface"
]
},
"supportedAccelerators": {
"NVIDIA": {
"resources": {
"accelerators": "RTX3090:1"
}
},
"AMD": {
"resources": {
"accelerators": "7900XTX:1"
}
}
}
},
{
"title": "Unsloth LLM Fine-tuning",
"description": "LLM training task using Unsloth FastLanguageModel with LoRA fine-tuning. Requires a Hugging Face token in HF_TOKEN env var for model access.",
"github_repo_url": "https://github.com/transformerlab/transformerlab-examples",
"github_repo_dir": "unsloth-llm-train",
"metadata": {
"category": "finetuning",
"modality": "text",
"framework": [
"unsloth"
]
},
"supportedAccelerators": {
"NVIDIA": {
"resources": {
"accelerators": "RTX3090:1"
}
},
"AMD": {
"resources": {
"accelerators": "7900XTX:1"
}
}
}
},
{
"title": "Unsloth GRPO Training Task",
"description": "A GRPO trainer based on the unsloth grpo training notebooks for training models with reasoning capabilities.",
"github_repo_url": "https://github.com/transformerlab/transformerlab-examples",
"github_repo_dir": "unsloth-grpo-train",
"metadata": {
"category": "training",
"modality": "text",
"framework": [
"unsloth"
]
},
"supportedAccelerators": {
"NVIDIA": {
"resources": {
"accelerators": "RTX3090:1"
}
},
"AMD": {
"resources": {
"accelerators": "7900XTX:1"
}
}
}
},
{
"title": "Unsloth Text-to-Speech Training Task",
"description": "A Text-to-Speech (TTS) trainer based on the unsloth audio training notebooks.",
"github_repo_url": "https://github.com/transformerlab/transformerlab-examples",
"github_repo_dir": "unsloth-text-to-speech-train",
"metadata": {
"category": "training",
"modality": "audio",
"framework": [
"unsloth"
]
},
"supportedAccelerators": {
"NVIDIA": {
"resources": {
"accelerators": "RTX3090:1"
}
},
"AMD": {
"resources": {
"accelerators": "7900XTX:1"
}
}
}
},
{
"title": "Diffusion LoRA Trainer",
"description": "A LoRA trainer for Stable Diffusion models. Trains on images with captions and generates sample images before and after training.",
"github_repo_url": "https://github.com/transformerlab/transformerlab-examples",
"github_repo_dir": "diffusion-train",
"metadata": {
"category": "training",
"modality": "image",
"framework": [
"diffusers"
]
},
"supportedAccelerators": {
"NVIDIA": {
"resources": {
"accelerators": "RTX3090:1"
}
},
"AMD": {
"resources": {
"accelerators": "7900XTX:1"
}
}
}
},
{
"title": "Embedding Model Trainer",
"description": "A trainer for embedding models using Sentence Transformers. Supports various dataset types and loss functions for training high-quality embeddings.",
"github_repo_url": "https://github.com/transformerlab/transformerlab-examples",
"github_repo_dir": "embedding-model-train",
"metadata": {
"category": "training",
"modality": "embedding",
"framework": [
"sentence-transformers"
]
},
"supportedAccelerators": {
"NVIDIA": {
"resources": {
"accelerators": "RTX3090:1"
}
},
"AMD": {
"resources": {
"accelerators": "7900XTX:1"
}
}
}
},
{
"title": "Sample Task Example",
"description": "A sample PyTorch training task that clones a repository and runs training script",
"github_repo_url": "https://github.com/transformerlab/transformerlab-examples",
"github_repo_dir": "new-task-test",
"metadata": {
"category": "other",
"modality": "other",
"framework": []
},
"supportedAccelerators": {
"NVIDIA": {
"resources": {
"cpus": "2",
"memory": "4"
}
},
"AMD": {
"resources": {
"cpus": "2",
"memory": "4"
}
},
"AppleSilicon": {
"resources": {
"cpus": "2",
"memory": "4"
}
},
"cpu": {
"resources": {
"cpus": "2",
"memory": "4"
}
}
}
},
{
"title": "Dataset Generation Task Example",
"description": "A sample dataset generation task that runs a dataset generation script and creates a dataset.",
"github_repo_url": "https://github.com/transformerlab/transformerlab-examples",
"github_repo_dir": "demo-generate-task",
"metadata": {
"category": "dataset-generation",
"modality": "other",
"framework": []
},
"supportedAccelerators": {
"NVIDIA": {
"resources": {
"cpus": "2",
"memory": "4"
}
},
"AMD": {
"resources": {
"cpus": "2",
"memory": "4"
}
},
"AppleSilicon": {
"resources": {
"cpus": "2",
"memory": "4"
}
},
"cpu": {
"resources": {
"cpus": "2",
"memory": "4"
}
}
}
},
{
"title": "YOLO Object Detection Train Task Example",
"description": "A sample YOLO object detection train task that runs a YOLO object detection train script on COCO8 dataset for 10 epochs",
"github_repo_url": "https://github.com/transformerlab/transformerlab-examples",
"github_repo_dir": "yolo-train-task",
"metadata": {
"category": "training",
"modality": "vision",
"framework": [
"yolo"
]
},
"supportedAccelerators": {
"NVIDIA": {
"resources": {
"accelerators": "RTX3090:1"
}
},
"AMD": {
"resources": {
"accelerators": "7900XTX:1"
}
}
}
},
{
"title": "Batch Image Generation using FLUX2",
"description": "A task to generate images in batch using the FLUX2 model.",
"github_repo_url": "https://github.com/transformerlab/transformerlab-examples",
"github_repo_dir": "batch-image-gen-flux",
"metadata": {
"category": "generation",
"modality": "vision",
"framework": [""]
},
"supportedAccelerators": {
"NVIDIA": {
"resources": {
"accelerators": "RTX3090:1"
}
},
"AMD": {
"resources": {
"accelerators": "7900XTX:1"
}
}
}
},
{
"title": "MNIST Train Task",
"description": "A task to train a neural network on the MNIST dataset using PyTorch.",
"github_repo_url": "https://github.com/transformerlab/transformerlab-examples/",
"github_repo_dir": "mnist-train",
"metadata": {
"category": "training",
"modality": "other",
"framework": []
},
"supportedAccelerators": {
"NVIDIA": {
"resources": {
"accelerators": "RTX3090:1"
}
},
"AMD": {
"resources": {
"accelerators": "7900XTX:1"
}
}
}
},
{
"title": "MNIST JAX Train Task",
"description": "A task to train a neural network on the MNIST dataset using JAX and Flax.",
"github_repo_url": "https://github.com/transformerlab/transformerlab-examples/",
"github_repo_dir": "mnist-jax-train",
"metadata": {
"category": "training",
"modality": "other",
"framework": [
"jax",
"flax"
]
},
"supportedAccelerators": {
"NVIDIA": {
"resources": {
"accelerators": "RTX3090:1"
}
},
"AMD": {
"resources": {
"accelerators": "7900XTX:1"
}
}
}
},
{
"title": "HF Training with Evals",
"description": "A task to train a language model using the TRL library on a specified dataset with evaluation done using the EleutherAI Harness.",
"github_repo_url": "https://github.com/transformerlab/transformerlab-examples",
"github_repo_dir": "trl-training-evals",
"metadata": {
"category": "finetuning",
"modality": "text",
"framework": [
"huggingface"
]
},
"supportedAccelerators": {
"NVIDIA": {
"resources": {
"accelerators": "RTX3090:1"
}
},
"AMD": {
"resources": {
"accelerators": "7900XTX:1"
}
}
}
}
]