Fix links (#558)

This commit is contained in:
pollfly 2022-01-27 12:15:04 +02:00 committed by GitHub
parent f0f0d26208
commit d3e986393a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 18 additions and 18 deletions

View File

@ -13,7 +13,7 @@
[![Optuna](https://img.shields.io/badge/Optuna-integrated-blue)](https://optuna.org)
[![Slack Channel](https://img.shields.io/badge/slack-%23clearml--community-blueviolet?logo=slack)](https://join.slack.com/t/clearml/shared_invite/zt-c0t13pty-aVUZZW1TSSSg2vyIGVPBhg)
[![Artifact Hub](https://img.shields.io/endpoint?url=https://artifacthub.io/badge/repository/allegroai)](https://artifacthub.io/packages/search?repo=allegroai)
[![Signup](https://img.shields.io/badge/Clear%7CML-Signup-blueviolet)](https://app.community.clear.ml)
[![Signup](https://img.shields.io/badge/Clear%7CML-Signup-blueviolet)](https://app.clear.ml)
</div>
---
@ -27,18 +27,18 @@ ClearML is a ML/DL development and production suite, it contains three main modu
(S3/GS/Azure/NAS)
Instrumenting these components is the **ClearML-server**, see [Self-Hosting](https://clear.ml/docs/latest/docs/deploying_clearml/clearml_server) & [Free tier Hosting](https://app.community.clear.ml)
Instrumenting these components is the **ClearML-server**, see [Self-Hosting](https://clear.ml/docs/latest/docs/deploying_clearml/clearml_server) & [Free tier Hosting](https://app.clear.ml)
---
<div align="center">
**[Sign up](https://app.community.clear.ml) & [Start using](https://clear.ml/docs/) in under 2 minutes**
**[Sign up](https://app.clear.ml) & [Start using](https://clear.ml/docs/) in under 2 minutes**
</div>
---
<a href="https://app.community.clear.ml"><img src="https://github.com/allegroai/clearml/blob/master/docs/webapp_screenshots.gif?raw=true" width="100%"></a>
<a href="https://app.clear.ml"><img src="https://github.com/allegroai/clearml/blob/master/docs/webapp_screenshots.gif?raw=true" width="100%"></a>
## ClearML Experiment Manager
@ -69,7 +69,7 @@ Instrumenting these components is the **ClearML-server**, see [Self-Hosting](htt
#### [Start using ClearML](https://clear.ml/docs/latest/docs/getting_started/ds/ds_first_steps)
1. Sign up for free to the [ClearML Hosted Service](https://app.community.clear.ml) (alternatively, you can set up your own server, see [here](https://clear.ml/docs/latest/docs/deploying_clearml/clearml_server)).
1. Sign up for free to the [ClearML Hosted Service](https://app.clear.ml) (alternatively, you can set up your own server, see [here](https://clear.ml/docs/latest/docs/deploying_clearml/clearml_server)).
> **_ClearML Demo Server:_** ClearML no longer uses the demo server by default. To enable the demo server, set the `CLEARML_NO_DEFAULT_SERVER=0`
> environment variable. Credentials aren't needed, but experiments launched to the demo server are public, so make sure not
@ -81,7 +81,7 @@ Instrumenting these components is the **ClearML-server**, see [Self-Hosting](htt
pip install clearml
```
1. Connect the ClearML SDK to the server by [creating credentials](https://app.community.clear.ml/profile), then execute the command
1. Connect the ClearML SDK to the server by [creating credentials](https://app.clear.ml/settings/workspace-configuration), then execute the command
below and follow the instructions:
```bash

View File

@ -174,7 +174,7 @@ class Session(TokenManager):
raise ValueError(
"ClearML configuration could not be found (missing `~/clearml.conf` or Environment CLEARML_API_HOST)\n"
"To get started with ClearML: setup your own `clearml-server`, "
"or create a free account at https://app.community.clear.ml"
"or create a free account at https://app.clear.ml"
)
self._ssl_error_count_verbosity = self.config.get(

View File

@ -15,10 +15,10 @@ from clearml.config import config_obj
from clearml.utilities.pyhocon import ConfigFactory, ConfigMissingException
description = "\n" \
"Please create new clearml credentials through the profile page in " \
"your `clearml-server` web app (e.g. http://localhost:8080/profile) \n"\
"Or create a free account at https://app.community.clear.ml/profile\n\n" \
"In the profile page, press \"Create new credentials\", then press \"Copy to clipboard\".\n" \
"Please create new clearml credentials through the settings page in " \
"your `clearml-server` web app (e.g. http://localhost:8080//settings/workspace-configuration) \n"\
"Or create a free account at https://app.clear.ml/settings/workspace-configuration\n\n" \
"In settings page, press \"Create new credentials\", then press \"Copy to clipboard\".\n" \
"\n" \
"Paste copied configuration here:\n"
@ -155,7 +155,7 @@ def main():
' api_server: %s\n' \
' web_server: %s\n' \
' files_server: %s\n' \
' # Credentials are generated using the webapp, %s/profile\n' \
' # Credentials are generated using the webapp, %s/settings\n' \
' # Override with os environment: CLEARML_API_ACCESS_KEY / CLEARML_API_SECRET_KEY\n' \
' credentials {"access_key": "%s", "secret_key": "%s"}\n' \
'}\n' \

View File

@ -2,7 +2,7 @@
## Decoupling Data from Code - The Dataset Paradigm
<a href="https://app.community.clear.ml"><img src="https://github.com/allegroai/clearml/blob/master/docs/dataset_screenshots.gif?raw=true" width="80%"></a>
<a href="https://app.clear.ml"><img src="https://github.com/allegroai/clearml/blob/master/docs/dataset_screenshots.gif?raw=true" width="80%"></a>
### The ultimate goal of `clearml-data` is to transform datasets into configuration parameters
Just like any other argument, the dataset argument should retrieve a full local copy of the

View File

@ -9,7 +9,7 @@ api {
# file server on port 8081
files_server: "http://localhost:8081"
# Credentials are generated using the webapp, http://localhost:8080/profile
# Credentials are generated using the webapp, http://localhost:8080/settings/workspace-configuration
credentials {"access_key": "EGRTCO8JMSIGI6S39GTP43NFWXDQOW", "secret_key": "x!XTov_G-#vspE*Y(h$Anm&DIc5Ou-F)jsl$PdOyj5wG1&E!Z8"}
# verify host ssl certificate, set to False only if you have a very good reason

View File

@ -88,7 +88,7 @@
},
"source": [
"## Step 3: Create new credentials: \n",
"1. Go to your [ClearML WebApp **Profile**](https://app.community.clear.ml/profile). \n",
"1. Go to your [ClearML WebApp **Settings**](https://app.clear.ml/settings/workspace-configuration). \n",
"1. Under the **WORKSPACES** section, go to **App Credentials**, and click **+ Create new credentials**\n",
"1. Copy your credentials"
]
@ -116,9 +116,9 @@
"\n",
"from clearml import Task\n",
"\n",
"web_server = 'https://app.community.clear.ml'#@param {type:\"string\"} \n",
"api_server = 'https://api.community.clear.ml'#@param {type:\"string\"} \n",
"files_server = 'https://files.community.clear.ml'#@param {type:\"string\"}\n",
"web_server = 'https://app.clear.ml'#@param {type:\"string\"} \n",
"api_server = 'https://api.clear.ml'#@param {type:\"string\"} \n",
"files_server = 'https://files.clear.ml'#@param {type:\"string\"}\n",
"access_key = ''#@param {type:\"string\"}\n",
"secret_key = ''#@param {type:\"string\"}\n",
"\n",