dqm_ml_job
DQM ML Job package for executing data quality assessment pipelines.
This package provides the core job execution framework for running data quality metric computations on datasets. It includes: - CLI entry points for running jobs from YAML configurations - Job orchestration for data loading, metric computation, and output writing - Data loaders for various file formats (Parquet, CSV) - Output writers for persisting results
Example
from dqm_ml_job.cli import run run({"config": {...}})
__all__ = ['ComputeDatasetFeatures']
module-attribute
__description__ = 'DQM ML Job - Data quality assessment pipeline execution'
module-attribute
ComputeDatasetFeatures(config: dict[str, Any]) -> None
Execute a job from a validated configuration dictionary.
The config is validated against JobConfig and must follow the v2 structure: - dataloaders: Contains loaders list and optional storage. - features: Optional interface with outputs and processors list. - metrics: Optional interface with outputs and processors list. - gap: Optional interface with outputs and processors list.
Source code in packages/dqm-ml-job/src/dqm_ml_job/cli.py
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 388 389 390 391 392 393 394 | |