Pipeline
Pipeline
Pipeline for executing tasks on documents.
Source code in sieves/pipeline/core.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 |
|
__call__(docs, in_place=False)
Process a list of documents through all tasks.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
docs
|
Iterable[Doc]
|
Documents to process. |
required |
in_place
|
bool
|
Whether to modify documents in-place or create copies. |
False
|
Returns:
Type | Description |
---|---|
Iterable[Doc]
|
Processed documents. |
Source code in sieves/pipeline/core.py
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 |
|
__getitem__(task_id)
Gets task with this ID.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
task_id
|
str
|
ID of task to fetch. |
required |
Returns:
Type | Description |
---|---|
Task
|
Task with specified ID. |
Source code in sieves/pipeline/core.py
183 184 185 186 187 188 189 190 191 192 193 |
|
__init__(tasks, use_cache=True)
Initialize pipeline.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
tasks
|
Iterable[Task] | Task
|
List of tasks to execute. |
required |
use_cache
|
bool
|
If True, pipeline will build a cache over processed |
True
|
Source code in sieves/pipeline/core.py
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
|
add_tasks(tasks)
Adds tasks to pipeline. Revalidates pipeline.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
tasks
|
Iterable[Task]
|
Tasks to be added. |
required |
Source code in sieves/pipeline/core.py
36 37 38 39 40 41 |
|
clear_cache()
Clears cache.
Source code in sieves/pipeline/core.py
117 118 119 120 |
|
deserialize(config, tasks_kwargs)
classmethod
Generates pipeline from config.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
config
|
Config
|
Config to generate pipeline from. |
required |
tasks_kwargs
|
Iterable[dict[str, Any]]
|
Values to inject into task configs. One dict per task (dict can be empty). |
required |
Returns:
Type | Description |
---|---|
Pipeline
|
Deserialized pipeline instance. |
Source code in sieves/pipeline/core.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 |
|
dump(path)
Save pipeline config to disk.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
path
|
Path | str
|
Target path. |
required |
Source code in sieves/pipeline/core.py
111 112 113 114 115 |
|
load(path, task_kwargs)
classmethod
Generate pipeline from disk.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
path
|
Path | str
|
Path to config file. |
required |
task_kwargs
|
Iterable[dict[str, Any]]
|
Values to inject into loaded config. |
required |
Returns:
Type | Description |
---|---|
Pipeline
|
Pipeline instance. |
Source code in sieves/pipeline/core.py
122 123 124 125 126 127 128 129 |
|
serialize()
Serializes pipeline object.
Returns:
Type | Description |
---|---|
Config
|
Serialized pipeline representation. |
Source code in sieves/pipeline/core.py
131 132 133 134 135 136 137 138 139 140 141 |
|