clearml
installed, please refer to ClearML installation guide for more details.- Run
clearml-init
and initialize your first ever config file.
pip install clenv
Note: All config files must be in the format of clearml-<profile_name>.conf
clenv config list
clenv config create <profile_name>
clenv config del <profile_name>
clenv config checkout <profile_name>
clenv config reinit <profile_name>
# Please paste your multi-line configuration and press Enter:
Then paste your multi-line configuration generated through clearML server.
clenv user genpass <user_name>
Note: This command only support git repos for now. The project name of the task created on the ClearML server will be the same as the git repo name. So please make sure you have a meaningful, easy to read git repo name.
clenv task exec
It will prompt you to select an available queue, correct task type, your entrypoint script path and input the task name.
After inputting all the required configs, it will ask you whether to save the configs. By typing 'y', the config will be saved. When you execute clenv task exec
next time in the same repo, it will load the saved configs and skip the config input process. However, it will still ask you for confirmation before submitting the task.
If you want to ignore the old run configs and freshly start a new execution, you can run:
clenv task exec -N
The -N
option will tell clenv
to ignore the config file you have, and prompt you to input all the configs again.
An alternative way of doing that is to delete the config file manually, which is located at ./.clenv/task_template.json
. Then running clenv task exec
again will start a fresh execution as well.
$ clenv config list
# Input a name for your current profile
$ clenv config create brainco
$ clenv config reinit brainco
$ clenv config checkout brainco
- Config management
- Config profile management
- Support custom config file path
- Privately hosted server management
- BCrypt password generation (Feature to be deprecated when more sophisticated user management is implemented)
- Server side utils and config management
- ClearML Agent side utils and config management
- Remote task management
- A user friendly remote task execution wizard
This project is not affiliated with Allegro AI, Inc. in any way. It is an independent and unofficial software. It's licensed under the MIT license.