mirror of
https://github.com/clearml/clearml
synced 2025-01-31 09:07:00 +00:00
a5a23510e8
Add artifacts retrieval example Rename LightGBM example
21 lines
502 B
Python
21 lines
502 B
Python
# ClearML - Hydra Example
|
|
#
|
|
import hydra
|
|
|
|
from omegaconf import OmegaConf
|
|
|
|
from clearml import Task
|
|
|
|
|
|
@hydra.main(config_path="config_files", config_name="config")
|
|
def my_app(cfg):
|
|
# type (DictConfig) -> None
|
|
task = Task.init(project_name="examples", task_name="hydra configuration")
|
|
logger = task.get_logger()
|
|
logger.report_text("You can view your full hydra configuration under Configuration tab in the UI")
|
|
print(OmegaConf.to_yaml(cfg))
|
|
|
|
|
|
if __name__ == "__main__":
|
|
my_app()
|