Small edits (#676)

This commit is contained in:
pollfly
2023-10-01 10:31:48 +03:00
committed by GitHub
parent 6b02f02b0d
commit 83fa8adcd5
40 changed files with 127 additions and 127 deletions

View File

@@ -33,7 +33,7 @@ output_model = OutputModel(task=task)
## Label Enumeration
The label enumeration dictionary is logged using the [`Task.connect_label_enumeration`](../../../references/sdk/task.md#connect_label_enumeration)
method which will update the tasks resulting model information. The current running task is accessed using the
method which will update the task's resulting model information. The current running task is accessed using the
[`Task.current_task`](../../../references/sdk/task.md#taskcurrent_task) class method.
```python
@@ -44,7 +44,7 @@ Task.current_task().connect_label_enumeration(enumeration)
```
:::note Directly Setting Model Enumeration
You can set a models label enumeration directly using the [`OutputModel.update_labels`](../../../references/sdk/model_outputmodel.md#update_labels)
You can set a model's label enumeration directly using the [`OutputModel.update_labels`](../../../references/sdk/model_outputmodel.md#update_labels)
method
:::
@@ -81,20 +81,20 @@ if CONDITION:
```
## WebApp
The model appears in the tasks **ARTIFACTS** tab.
The model appears in the task's **ARTIFACTS** tab.
![Task artifacts](../../../img/examples_model_update_artifacts.png)
Clicking on the model name takes you to the [models page](../../../webapp/webapp_model_viewing.md), where you can view the
models details and access the model.
Clicking on the model name takes you to the [model's page](../../../webapp/webapp_model_viewing.md), where you can view the
model's details and access the model.
![Model page](../../../img/examples_model_update_model.png)
The models **NETWORK** tab displays its configuration.
The model's **NETWORK** tab displays its configuration.
![Model network tab](../../../img/examples_model_update_network.png)
The models **LABELS** tab displays its label enumeration.
The model's **LABELS** tab displays its label enumeration.
![Model labels](../../../img/examples_model_update_labels.png)