mirror of
https://github.com/clearml/clearml-docs
synced 2025-01-31 22:48:40 +00:00
730 B
730 B
title |
---|
Tasks |
Hyper-Datasets extend the ClearML Task with Dataviews
Usage
Hyper-Datasets are supported by the allegroai
python package.
Connecting Dataviews to a Task
Use Task.connect
to connect a Dataview object to a Task:
from allegroai import DataView, Task
task = Task.init(project_name='examples', task_name='my task')
dataview = DataView()
task.connect(dataview)
Accessing a Task's Dataviews
Use the Task.get_dataviews
method to access the Dataviews that are connected to a Task.
task.get_dataviews()
This returns a dictionary of Dataview objects and their names.