Small edits (#1033)
Some checks are pending
CI / build (push) Waiting to run

This commit is contained in:
pollfly
2025-02-09 19:46:40 +02:00
committed by GitHub
parent e99e033b06
commit 79eff642ff
87 changed files with 104 additions and 104 deletions

View File

@@ -90,12 +90,12 @@ information).
You can edit the labels of credentials in your own workspace, or credentials that you created in other workspaces.
**To edit the credentials label:** hover over the desired credentials, and click <img src="/docs/latest/icons/ico-edit.svg" alt="Edit Pencil" className="icon size-md" />
**To edit the credentials label:** hover over the desired credentials, and click <img src="/docs/latest/icons/ico-edit.svg" alt="Edit Pencil" className="icon size-md" /> .
You can revoke any credentials in your own workspace, or credentials that you created in other workspaces. Once revoked,
these credentials cannot be recovered.
**To revoke ClearML credentials:** hover over the desired credentials, and click <img src="/docs/latest/icons/ico-trash.svg" alt="Trash can" className="icon size-md" />
**To revoke ClearML credentials:** hover over the desired credentials, and click <img src="/docs/latest/icons/ico-trash.svg" alt="Trash can" className="icon size-md" /> .
### AI Application Gateway Tokens

View File

@@ -71,7 +71,7 @@ The comparison pages provide the following views:
### Side-by-side Textual Comparison
In the **Details** and **Hyperparameters** (Values view) tabs, you can view differences in the tasks' parameters' nominal
values. The **Details** tab displays the tasks' execution details (source code, uncommitted changes, python packages),
values. The **Details** tab displays the tasks' execution details (source code, uncommitted changes, Python packages),
models, artifacts, configuration objects, and additional general information. **Hyperparameters** (Values view) displays the
tasks' hyperparameter and their values.

View File

@@ -37,7 +37,7 @@ You can create tasks by:
* Running code instrumented with ClearML (see [Task Creation](../clearml_sdk/task_sdk.md#task-creation))
* [Cloning an existing task](webapp_exp_reproducing.md)
* Via CLI using [`clearml-task`](../apps/clearml_task.md)
* Through the UI interface: Input the task's details, including its source code and python requirements, and then
* Through the UI interface: Input the task's details, including its source code and Python requirements, and then
run it through a [ClearML Queue](../fundamentals/agents_and_queues.md#what-is-a-queue) or save it as a *draft*.
To create a task through the UI interface:
@@ -57,7 +57,7 @@ To create a task through the UI interface:
* Binary - The binary executing the script (e.g. python3, bash etc).
* Type How the code is provided
* Script - The name of the file to run using the above specified binary
* Module - The name of a python module to run (Python only, see [Python module specification](https://docs.python.org/3/using/cmdline.html#cmdoption-m))
* Module - The name of a Python module to run (Python only, see [Python module specification](https://docs.python.org/3/using/cmdline.html#cmdoption-m))
* Custom code - Directly provide the code to run. Write code, or upload a file:
* File name - The script in which your code is stored. Click `Upload` to upload an existing file.
* Content - The actual code. Click `Edit` to modify the scripts contents.
@@ -66,7 +66,7 @@ To create a task through the UI interface:
* **Arguments** (*optional*) - Add [hyperparameter](../fundamentals/hyperparameters.md) values.
* **Environment** (*optional*) - Set up the tasks execution environment
* Python - Python environment settings
* Use Poetry - Force Poetry instead of pip package manager. Disables additional python settings.
* Use Poetry - Force Poetry instead of pip package manager. Disables additional Python settings.
* Preinstalled venv - The name of a virtual environment available in the tasks execution environment to use when
running the task. Additionally, specify how to use the virtual environment:
* Skip - Try to automatically detect an available virtual environment, and use it as is.