Small edits ()

This commit is contained in:
pollfly 2023-05-15 14:16:12 +03:00 committed by GitHub
parent f617fdb161
commit e93f0718fb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

View File

@ -17,7 +17,7 @@ Through an `APIClient` instance, you can access ClearMLs REST API services:
`APIClient` makes the ClearML Servers REST API endpoints available as Python methods.
To use `APIClient`, create an instance of it then call the method corresponding to the desired REST API endpoints, with
To use `APIClient`, create an instance of it then call the method corresponding to the desired REST API endpoint, with
its respective parameters as described in the [REST API reference page](../references/api/index.md).
For example, the [`POST/ projects.get_all`](../references/api/projects.md#post-projectsget_all) call returns all projects

View File

@ -834,7 +834,7 @@ Set the OS environment variable `CLEARML_LOG_ENVIRONMENT` with the variables you
**I run my script, but my experiment is not in the ClearML Hosted Service Web UI. How do I fix this?** <a id="hosted-service-no-config"></a>
If you joined the ClearML Hosted Service and run a script, but your experiment does not appear in Web UI, you may not have configured ClearML for the hosted service. Run the ClearML setup wizard. It will request your hosted service ClearML credentials and create the ClearML configuration you need.
If you joined the ClearML Hosted Service and ran a script, but your experiment does not appear in Web UI, you may not have configured ClearML for the hosted service. Run the ClearML setup wizard. It will request your hosted service ClearML credentials and create the ClearML configuration you need.
pip install clearml

View File

@ -48,11 +48,11 @@ You can connect configuration dictionaries or files to a pipeline controller usi
[PipelineController.connect_configuration](../references/sdk/automation_controller_pipelinecontroller.md#connect_configuration)
method by providing the configuration object, or file path.
For files, call `connect_configuration()` before reading the configuration file. If it's a local files, input a relative
For files, call `connect_configuration()` before reading the configuration file. If it's a local file, input a relative
path.
```python
config_file = pipe.connect_configuration(configuration=config_file_path, name="My Configuration", description="configuraiton for pipeline")
config_file = pipe.connect_configuration(configuration=config_file_path, name="My Configuration", description="configuration for pipeline")
my_params = json.load(open(config_file,'rt'))
```