diff --git a/docs/apps/clearml_task.md b/docs/apps/clearml_task.md index 043fa30f..1d50f260 100644 --- a/docs/apps/clearml_task.md +++ b/docs/apps/clearml_task.md @@ -57,6 +57,7 @@ errors in identifying the correct default branch. |---|----|---| | `--args` | Arguments to pass to the remote task, list of `=` strings. Currently only argparse arguments are supported | Yes | | `--base-task-id` | Use a pre-existing task in the system, instead of a local repo / script. Essentially clones an existing task and overrides arguments / requirements | Yes | +| `--binary` | Binary executable used to launch the entry point. For example: `--binary python3`, `--binary /bin/bash`. By default, the binary will be auto-detected | Yes | | `--branch` | Select repository branch / tag. By default, latest commit from the master branch | Yes | | `--commit` | Select commit ID to use. By default, latest commit, or local commit ID when using local repository | Yes | | `--cwd` | Working directory to launch the script from. Relative to repo root or local `--folder` | Yes | diff --git a/docs/configs/clearml_conf.md b/docs/configs/clearml_conf.md index e753f49a..89d7a63c 100644 --- a/docs/configs/clearml_conf.md +++ b/docs/configs/clearml_conf.md @@ -941,8 +941,8 @@ and limitations on bucket naming. **`sdk.aws.s3.credentials.verify`** (*string*/*boolean*) -* Specify whether to verify SSL certificates. By default, they are verified. Input a path to a CA bundle, or set to - `false` to skip SSL certificate verification. +* Specify whether to verify SSL certificates. By default, verification is enabled (`true`). You can provide a path or a +URL to a CA bundle, or set this option to `false` to skip SSL certificate verification.
@@ -999,6 +999,14 @@ and limitations on bucket naming. * Dictionary of development mode options. +--- + +**`sdk.development.default_pandas_dataframe_extension_name`** (*string*) + +* Set the default `extension_name` for pandas `DataFrame` objects +* Valid values are: `.csv.gz`, `.parquet`, `.feather`, `.pickle` +* This value can be overridden by the `extension_name` argument supplied to `Task.upload_artifact()` + --- **`sdk.development.default_output_uri`** (*string*)