cnvrg 0.7.2 → 0.7.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/cnvrg/cli.rb +2 -1
- data/lib/cnvrg/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ad8377415af407d173ec92d1b9fc7711409cbaaa
|
|
4
|
+
data.tar.gz: 846a4bcc0e20554272356df964275ec51ef18e28
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 108d721b0571c652fe7363fa928519a4d36b0685af91966656506a3984cbc25856992d1e479ab4c1d14fbf17148c3ecfff547ff6b002cfb2bd754e2925b1cd76
|
|
7
|
+
data.tar.gz: f16687af8d0ebc45acb112cdf73c43d599c509cc4af977c61220742ba4444ca5f486a7591a40cfcc1421e2c205d1a7b6f293dec7570eaf069c661869ac5a5f65
|
data/lib/cnvrg/cli.rb
CHANGED
|
@@ -3791,6 +3791,7 @@ module Cnvrg
|
|
|
3791
3791
|
path_to_cmd = get_cmd_path_in_dir(working_dir, Dir.pwd)
|
|
3792
3792
|
|
|
3793
3793
|
begin
|
|
3794
|
+
title = options["title"] || nil
|
|
3794
3795
|
grid = options["grid"] || nil
|
|
3795
3796
|
data = options["data"] || nil
|
|
3796
3797
|
data_commit = options["data_commit"] || nil
|
|
@@ -3924,7 +3925,7 @@ module Cnvrg
|
|
|
3924
3925
|
|
|
3925
3926
|
res = exp.exec_remote(command, commit_to_run, instance_type, image_slug, schedule, local_timestamp, grid, path_to_cmd, data, data_commit,
|
|
3926
3927
|
periodic_sync, sync_before_terminate, max_time, ds_sync_options,output_dir,
|
|
3927
|
-
data_query, git_commit, git_branch, restart_if_stuck,local_folders_options )
|
|
3928
|
+
data_query, git_commit, git_branch, restart_if_stuck,local_folders_options, title )
|
|
3928
3929
|
if Cnvrg::CLI.is_response_success(res)
|
|
3929
3930
|
check = Helpers.checkmark()
|
|
3930
3931
|
str = "#{check} Experiment's is on: #{Cnvrg::Helpers.remote_url}/#{project.owner}/projects/#{project.slug}/experiments/#{res["result"]["exp_url"]}"
|
data/lib/cnvrg/version.rb
CHANGED