comet_ml.integration.spacy ¶
comet_logger_v1 ¶
comet_logger_v1(
project_name: typing.Optional[str] = None,
workspace: typing.Optional[str] = None,
run_name: typing.Optional[str] = None,
tags: typing.Optional[typing.List[str]] = None,
remove_config_values: typing.List[str] = None,
)
Creates a Comet spacy logger that starts an experiment and autologs useful information such as: params, score, losses and more.
Parameters:
project_name
(Optional[str]
, default:None
) –The name of the Comet project.
workspace
(Optional[str]
, default:None
) –The name of the Comet workspace.
run_name
(Optional[str]
, default:None
) –The name of the run that will be displayed in Comet.
tags
(Optional[List[str]]
, default:None
) –tags list to add to the experiment.
remove_config_values
(List[str]
, default:None
) –A list that contains the spacy configs that will be removed.
Dec. 2, 2024