Returns eval config writer.
tfma.writers.EvalConfigWriter(
output_path: str,
eval_config: tfma.EvalConfig
,
output_file_format: str = EVAL_CONFIG_FILE_FORMAT,
data_location: Optional[str] = None,
data_file_format: Optional[str] = None,
model_locations: Optional[Dict[str, str]] = None,
filename: Optional[str] = None
) -> tfma.writers.Writer
Args |
output_path
|
Output path to write config to.
|
eval_config
|
EvalConfig.
|
output_file_format
|
Output file format. Currently on 'json' is supported.
|
data_location
|
Optional path indicating where data is read from. This is
only used for display purposes.
|
data_file_format
|
Optional format of the input examples. This is only used
for display purposes.
|
model_locations
|
Dict of model locations keyed by model name. This is only
used for display purposes.
|
filename
|
Name of file to store the config as.
|