46 lines
1011 B
Python
46 lines
1011 B
Python
|
|
"""
|
||
|
|
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'
|
||
|
|
]
|