File size: 2,202 Bytes
0a4a312 |
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 |
distilabel:
version: 1.3.0
pipeline:
name: pipe-nothing
description: null
steps:
- step:
name: load_data_from_dicts_0
resources:
replicas: 1
cpus: null
gpus: null
input_mappings: {}
output_mappings: {}
batch_size: 2
data:
'0':
instruction: Tell me a joke.
'1':
instruction: Tell me a joke.
runtime_parameters_info:
- name: resources
runtime_parameters_info:
- name: replicas
optional: true
description: The number of replicas for the step.
- name: cpus
optional: true
description: The number of CPUs assigned to each step replica.
- name: gpus
optional: true
description: The number of GPUs assigned to each step replica.
- name: batch_size
optional: true
description: The number of rows that will contain the batches generated by
the step.
type_info:
module: distilabel.steps.generators.data
name: LoadDataFromDicts
name: load_data_from_dicts_0
- step:
name: DUMMY_STEP
resources:
replicas: 1
cpus: null
gpus: null
input_mappings: {}
output_mappings: {}
input_batch_size: 50
runtime_parameters_info:
- name: resources
runtime_parameters_info:
- name: replicas
optional: true
description: The number of replicas for the step.
- name: cpus
optional: true
description: The number of CPUs assigned to each step replica.
- name: gpus
optional: true
description: The number of GPUs assigned to each step replica.
- name: input_batch_size
optional: true
description: The number of rows that will contain the batches processed by
the step.
type_info:
module: __main__
name: DummyStep
name: DUMMY_STEP
connections:
- from: load_data_from_dicts_0
to:
- DUMMY_STEP
- from: DUMMY_STEP
to: []
routing_batch_functions: []
type_info:
module: distilabel.pipeline.local
name: Pipeline
requirements: []
|