added style mimicking piepelines
This commit is contained in:
@@ -0,0 +1,45 @@
|
||||
"""
|
||||
Styling Scripts Package
|
||||
Provides command-line interfaces for styling data processing, training, and inference
|
||||
"""
|
||||
|
||||
from .data_processor import (
|
||||
run_with_yaml_config,
|
||||
run_styling_examples,
|
||||
create_sample_styling_data,
|
||||
create_custom_styling_config,
|
||||
show_styling_features
|
||||
)
|
||||
|
||||
from .train import (
|
||||
run_training_with_config,
|
||||
create_training_example,
|
||||
show_training_features
|
||||
)
|
||||
|
||||
from .inference import (
|
||||
run_inference_with_config,
|
||||
create_inference_example,
|
||||
run_batch_inference_example,
|
||||
show_inference_features
|
||||
)
|
||||
|
||||
__all__ = [
|
||||
# Data processing
|
||||
'run_with_yaml_config',
|
||||
'run_styling_examples',
|
||||
'create_sample_styling_data',
|
||||
'create_custom_styling_config',
|
||||
'show_styling_features',
|
||||
|
||||
# Training
|
||||
'run_training_with_config',
|
||||
'create_training_example',
|
||||
'show_training_features',
|
||||
|
||||
# Inference
|
||||
'run_inference_with_config',
|
||||
'create_inference_example',
|
||||
'run_batch_inference_example',
|
||||
'show_inference_features'
|
||||
]
|
||||
Reference in New Issue
Block a user