Skip to content

Commit 3aed7c6

Browse files
Merge pull request #142 from Paperspace/merge-to-master
Merge to master
2 parents 6d3123d + d5f3349 commit 3aed7c6

File tree

4 files changed

+30
-13
lines changed

4 files changed

+30
-13
lines changed

gradient/api_sdk/utils.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@ def print_dict_recursive(input_dict, logger, indent=0, tabulator=" "):
5858
logger.log("%s%s" % (tabulator * (indent + 1), val))
5959

6060

61-
<<<<<<< HEAD
6261
class ExperimentsClientHelpersMixin(object):
6362
def _get_experiment_type_id(self, value):
6463
if isinstance(value, int):
@@ -72,8 +71,6 @@ def _get_experiment_type_id(self, value):
7271
return experiment_type_id
7372

7473

75-
=======
76-
>>>>>>> v0.4.0a5
7774
def base64_encode(s):
7875
if six.PY3:
7976
s = bytes(s, encoding="utf8")
@@ -89,11 +86,8 @@ def base64_encode(s):
8986
def base64_encode_attribute(data, name):
9087
encoded_value = base64_encode(getattr(data, name))
9188
setattr(data, name, encoded_value)
92-
<<<<<<< HEAD
9389

9490

9591
def urljoin(base, url):
9692
url = urljoin_original(base, url)
9793
return str(url)
98-
=======
99-
>>>>>>> v0.4.0a5

gradient/commands/deployments.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,11 @@ def execute(self, use_vpc=False, **kwargs):
3535
deployment_id = self.deployment_client.create(use_vpc=use_vpc, **kwargs)
3636

3737
self.logger.log("New deployment created with id: {}".format(deployment_id))
38-
<<<<<<< HEAD
3938
self.logger.log(self.get_instance_url(deployment_id))
4039

4140
def get_instance_url(self, instance_id):
4241
url = urljoin(config.WEB_URL, "/console/deployments/{}".format(instance_id))
4342
return url
44-
=======
45-
>>>>>>> v0.4.0a5
4643

4744

4845
class ListDeploymentsCommand(_DeploymentCommand):

releasenotes.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,20 @@
99
### Fixes
1010
* Fix how some error messages are printed
1111

12+
# Release Notes for 0.3.7
13+
### Fixes
14+
* Fix formatting of datetime in `projects list` table
15+
* Fix sending some bash commands using `--*command` options caused Cloudflare's filter to stop request
16+
17+
# Release Notes for 0.4.0a4
18+
### Fixes
19+
* Fix how some error messages are printed
20+
21+
# Release Notes for 0.3.6
22+
### Fixes
23+
* Fix `job delete` and `job stop` commands
24+
* Fix how some error messages are printed
25+
1226
# Release Notes for 0.4.0a3
1327
### New features
1428
* Command for deleting a tensorboard
@@ -21,6 +35,18 @@
2135
* Fix StopIteration exception in Python 3.7
2236
* Fix `job delete` and `job stop` commands
2337

38+
# Release Notes for 0.3.5
39+
### Fixes
40+
* Fix StopIteration exception in Python 3.7
41+
42+
# Release Notes for 0.3.4
43+
### Fixes
44+
* Fixed bug causing exception be raised when `--help` option was used with some commands (like `gradient run`)
45+
46+
# Release Notes for 0.3.3
47+
### Fixes
48+
* ~~Fixed bug causing exception be raised when `--help` option was used with some commands (like `gradient run`)~~
49+
2450
# Release Notes for 0.3.2a
2551
### New features
2652
* Support for tensorboard
@@ -31,6 +57,10 @@
3157
* Remove experiments from existing tensorboard
3258
* Add support for experiments workspace credentials
3359

60+
# Release Notes for 0.3.2
61+
### Fixes
62+
* Fixed bug raising exception when `experiment create's` `--ignoreFiles` option was used
63+
3464
# Release Notes for 0.3.1
3565
### Fixes
3666
* Fixed bug preventing showing logs when 'experiments run' was executed

tests/functional/test_hyperparameters.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -276,11 +276,7 @@ class TestCreateAndStartHyperparameters(object):
276276
"tuningCommand": "c29tZSBjb21tYW5k",
277277
"workerCount": 1,
278278
"workerCommand": "c29tZSB3b3JrZXIgY29tbWFuZA==",
279-
<<<<<<< HEAD
280279
"projectHandle": "some_project_id",
281-
=======
282-
"projectHandle": "pr4yxj956",
283-
>>>>>>> v0.4.0a5
284280
"experimentTypeId": constants.ExperimentType.HYPERPARAMETER_TUNING,
285281
}
286282

0 commit comments

Comments
 (0)