items
Component
Bases: Item, Instantiable
Component that can be instantiated from configuration.
Uses a dictionary with string keys to represent a Python class or function that can be dynamically instantiated. Other keys are passed as arguments to the target component.
Example
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
config
|
Any
|
Configuration content |
required |
id
|
str
|
Identifier for this config item, defaults to "" |
''
|
Note
Special configuration keys:
_target_: Full module path (e.g., "collections.Counter")_requires_: Dependencies to evaluate/instantiate first_disabled_: Skip instantiation if True_mode_: Instantiation mode:"default": Returns component(**kwargs)"callable": Returns functools.partial(component, **kwargs)"debug": Returns pdb.runcall(component, **kwargs)
Source code in src/sparkwheel/items.py
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 | |
_suggest_similar_modules(target)
Suggest similar valid module names using fuzzy matching.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
target
|
str
|
The module path that couldn't be found (e.g., 'torch.optim.Adamfad') |
required |
Returns:
| Type | Description |
|---|---|
str | None
|
A helpful suggestion string, or None if no good suggestions found. |
Source code in src/sparkwheel/items.py
instantiate(**kwargs)
Instantiate component based on self.config content.
The target component must be a class or a function, otherwise, return None.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
kwargs
|
Any
|
args to override / add the config args when instantiation. |
{}
|
Source code in src/sparkwheel/items.py
is_disabled()
Utility function used in instantiate() to check whether to skip the instantiation.
Source code in src/sparkwheel/items.py
is_instantiable(config)
staticmethod
Check whether this config represents a class or function that is to be instantiated.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
config
|
Any
|
input config content to check. |
required |
Source code in src/sparkwheel/items.py
resolve_args()
Utility function used in instantiate() to resolve the arguments from current config content.
Source code in src/sparkwheel/items.py
resolve_module_name()
Resolve the target module name from configuration.
Requires full module path (e.g., "collections.Counter"). No automatic module discovery is performed.
Returns:
| Type | Description |
|---|---|
|
str or callable: The module path or callable from target |
Source code in src/sparkwheel/items.py
Expression
Bases: Item
Executable expression that evaluates Python code.
Expressions start with $ and are evaluated using Python's eval(),
or imported if they're import statements.
Example
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
config
|
Any
|
Expression string starting with |
required |
id
|
str
|
Identifier for this config item, defaults to "" |
''
|
globals
|
dict[str, Any] | None
|
Additional global context for evaluation |
None
|
See Also
Source code in src/sparkwheel/items.py
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 | |
_parse_import_string(import_string)
parse single import statement such as "from pathlib import Path"
Source code in src/sparkwheel/items.py
evaluate(globals=None, locals=None)
Evaluate the expression and return the result.
Uses Python's eval() to execute the expression string.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
globals
|
dict[str, Any] | None
|
Additional global symbols for evaluation |
None
|
locals
|
dict[str, Any] | None
|
Additional local symbols for evaluation |
None
|
Returns:
| Type | Description |
|---|---|
str | Any | None
|
Evaluation result, or None if not an expression |
Raises:
| Type | Description |
|---|---|
RuntimeError
|
If evaluation fails |
Source code in src/sparkwheel/items.py
is_expression(config)
classmethod
Check whether the config is an executable expression string.
Currently, a string starts with "$" character is interpreted as an expression.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
config
|
dict[str, Any] | list[Any] | str
|
input config content to check. |
required |
Source code in src/sparkwheel/items.py
is_import_statement(config)
classmethod
Check whether the config is an import statement (a special case of expression).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
config
|
dict[str, Any] | list[Any] | str
|
input config content to check. |
required |
Source code in src/sparkwheel/items.py
Instantiable
Bases: ABC
Base class for an instantiable object.
Source code in src/sparkwheel/items.py
instantiate(*args, **kwargs)
abstractmethod
Instantiate the target component and return the instance.
is_disabled(*args, **kwargs)
abstractmethod
Return a boolean flag to indicate whether the object should be instantiated.
Source code in src/sparkwheel/items.py
Item
Basic data structure to represent a configuration item.
A Item instance can optionally have a string id, so that other items can refer to it.
It has a build-in config property to store the configuration object.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
config
|
Any
|
content of a config item, can be objects of any types, a configuration resolver may interpret the content to generate a configuration object. |
required |
id
|
str
|
name of the current config item, defaults to empty string. |
''
|
source_location
|
SourceLocation | None
|
optional location in source file where this config item was defined. |
None
|
Source code in src/sparkwheel/items.py
get_config()
get_id()
update_config(config)
Replace the content of self.config with new config.
A typical usage is to modify the initial config content at runtime.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
config
|
Any
|
content of a |
required |