clearml-docs/docs/hyperdatasets/task.md

33 lines
723 B
Markdown
Raw Normal View History

2021-06-20 22:00:16 +00:00
---
title: Tasks
---
2022-03-13 13:07:06 +00:00
Hyper-Datasets extend the ClearML [**Task**](../fundamentals/task.md) with [Dataviews](dataviews.md)
2021-06-20 22:00:16 +00:00
## Usage
Hyper-Datasets are supported by the `allegroai` python package.
2021-06-20 22:00:16 +00:00
### Connecting Dataviews to a Task
2023-06-15 08:22:50 +00:00
Use [`Task.connect()`](../references/sdk/task.md#connect) to connect a Dataview object to a Task:
2021-06-20 22:00:16 +00:00
```python
2021-12-02 17:53:37 +00:00
from allegroai import DataView, Task
2021-06-20 22:00:16 +00:00
2021-12-02 17:53:37 +00:00
task = Task.init(project_name='examples', task_name='my task')
2021-06-20 22:00:16 +00:00
dataview = DataView()
task.connect(dataview)
```
### Accessing a Task's Dataviews
2023-10-09 12:48:19 +00:00
Use `Task.get_dataviews()` to access the Dataviews that are connected to a Task.
2021-06-20 22:00:16 +00:00
```python
2021-12-02 17:53:37 +00:00
task.get_dataviews()
2021-06-20 22:00:16 +00:00
```
This returns a dictionary of Dataview objects and their names.