diff --git a/examples/comet_ml_plugin/README.md b/examples/comet_ml_plugin/README.md index 4dcd33d4a..943bb829b 100644 --- a/examples/comet_ml_plugin/README.md +++ b/examples/comet_ml_plugin/README.md @@ -25,10 +25,10 @@ plugins: dynamic-log-links: - comet-ml-execution-id: displayName: Comet - templateUris: {{ .taskConfig.host }}/{{ .taskConfig.workspace }}/{{ .taskConfig.project_name }}/{{ .executionName }}{{ .nodeId }}{{ .taskRetryAttempt }}{{ .taskConfig.link_suffix }} + templateUris: "{{ .taskConfig.host }}/{{ .taskConfig.workspace }}/{{ .taskConfig.project_name }}/{{ .executionName }}{{ .nodeId }}{{ .taskRetryAttempt }}{{ .taskConfig.link_suffix }}" - comet-ml-custom-id: displayName: Comet - templateUris: {{ .taskConfig.host }}/{{ .taskConfig.workspace }}/{{ .taskConfig.project_name }}/{{ .taskConfig.experiment_key }} + templateUris: "{{ .taskConfig.host }}/{{ .taskConfig.workspace }}/{{ .taskConfig.project_name }}/{{ .taskConfig.experiment_key }}" ``` ```{auto-examples-toc} diff --git a/examples/wandb_plugin/wandb_plugin/wandb_example.py b/examples/wandb_plugin/wandb_plugin/wandb_example.py index 07d4017a3..8873a7105 100644 --- a/examples/wandb_plugin/wandb_plugin/wandb_example.py +++ b/examples/wandb_plugin/wandb_plugin/wandb_example.py @@ -82,8 +82,8 @@ def wf() -> float: # dynamic-log-links: # - wandb-execution-id: # displayName: Weights & Biases -# templateUris: "{{ .taskConfig.host }}/{{ .taskConfig.entity }}/{{ .taskConfig.project }}/runs/{{ .executionName }}-{{ .nodeId }}-{{ .taskRetryAttempt }}" +# templateUris: '{{ .taskConfig.host }}/{{ .taskConfig.entity }}/{{ .taskConfig.project }}/runs/{{ .executionName }}-{{ .nodeId }}-{{ .taskRetryAttempt }}' # - wandb-custom-id: # displayName: Weights & Biases -# templateUris: "{{ .taskConfig.host }}/{{ .taskConfig.entity }}/{{ .taskConfig.project }}/runs/{{ .taskConfig.id }}" +# templateUris: '{{ .taskConfig.host }}/{{ .taskConfig.entity }}/{{ .taskConfig.project }}/runs/{{ .taskConfig.id }}' # ```