SegmentationPipeline
Pre-built segmentation pipeline
PARAMETER | DESCRIPTION |
---|---|
data_fetcher
|
data fetcher
TYPE:
|
process_area
|
process area
TYPE:
|
data_preprocessor
|
data preprocessor
TYPE:
|
model
|
model
TYPE:
|
exporter
|
exporter
TYPE:
|
batch_size
|
batch size
TYPE:
|
num_workers
|
number of workers
TYPE:
|
from_config
classmethod
Creates a segmentation pipeline from the configuration.
PARAMETER | DESCRIPTION |
---|---|
config
|
configuration
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
SegmentationPipeline
|
segmentation pipeline |
__call__
Runs the segmentation pipeline.
SegmentationPipelineConfig
Bases: pydantic.BaseModel
Configuration for the from_config
class method of SegmentationPipeline
ATTRIBUTE | DESCRIPTION |
---|---|
data_fetcher_config |
configuration of the data fetcher
TYPE:
|
process_area_config |
configuration of the process area
TYPE:
|
data_preprocessor_config |
configuration of the data preprocessor
TYPE:
|
segmentation_model_config |
configuration of the model
TYPE:
|
exporter_config |
configuration of the exporter
TYPE:
|
batch_size |
batch size
TYPE:
|
num_workers |
number of workers
TYPE:
|
DataFetcherConfig
Bases: pydantic.BaseModel
Configuration for data fetchers
ATTRIBUTE | DESCRIPTION |
---|---|
name |
name of the data fetcher
TYPE:
|
config |
configuration of the data fetcher
TYPE:
|
DataPreprocessorConfig
Bases: pydantic.BaseModel
Configuration for data preprocessors
ATTRIBUTE | DESCRIPTION |
---|---|
name |
name of the data preprocessor
TYPE:
|
config |
configuration of the data preprocessor
TYPE:
|
ModelConfig
Bases: pydantic.BaseModel
Configuration for models
ATTRIBUTE | DESCRIPTION |
---|---|
name |
name of the model
TYPE:
|
config |
configuration of the model
TYPE:
|
ExporterConfig
Bases: pydantic.BaseModel
Configuration for exporters
ATTRIBUTE | DESCRIPTION |
---|---|
name |
name of the exporter
TYPE:
|
config |
configuration of the exporter
TYPE:
|