Small edits (#128)

This commit is contained in:
pollfly
2021-12-02 19:53:37 +02:00
committed by GitHub
parent 3af0edb147
commit 49de7323ab
21 changed files with 269 additions and 185 deletions

View File

@@ -13,8 +13,9 @@ Hyper-Datasets are supported by the `allegroai` python package.
Use [`Task.connect`](../references/sdk/task.md#connect) to connect a Dataview object to a Task:
```python
from allegroai import DataView
from allegroai import DataView, Task
task = Task.init(project_name='examples', task_name='my task')
dataview = DataView()
task.connect(dataview)
```
@@ -24,7 +25,7 @@ task.connect(dataview)
Use the `Task.get_dataviews` method to access the Dataviews that are connected to a Task.
```python
task.get_dataviews():
task.get_dataviews()
```
This returns a dictionary of Dataview objects and their names.