Skip to content

Commit 3d641c8

Browse files
authored
Merge pull request #262 from gridai/dev
Release 0.8.47
2 parents e70641a + 4aa6dc9 commit 3d641c8

File tree

4 files changed

+106
-5
lines changed

4 files changed

+106
-5
lines changed

changelog/2022-05-17.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
## :partying_face: May 17, 2022
2+
3+
**CLI version: 0.8.47**
4+
5+
Today's release includes several bug fixes to improve the overall experience with Grid.
6+
7+
### Fixes and Enhancements:
8+
9+
- Faster experiment failing when errors are encountered during build or code execution
10+
11+
- Improves the Run-creation flow in the Web UI by fixing error messages reported due to insufficient repo acess or invalid repos
12+
13+
- Stability improvements to the UI and event reloading
14+
15+
- Fixes experience with the drop-down in the experiments table which allows you to add hyperparameter columns
16+
17+
- Allows support for nested requirements.txt files:
18+
Ex:
19+
```# install all mandatory dependencies
20+
-r ./base.txt
21+
22+
# install all extra dependencies for full package testing
23+
-r ./extra.txt
24+
25+
# install all loggers for full package testing
26+
-r ./loggers.txt
27+
28+
# extended list of dependencies for development and run lint and tests
29+
-r ./test.txt
30+
31+
# install all extra dependencies for running examples
32+
-r ./examples.txt
33+
```
34+
35+
---
36+

docs/changelog.md

Lines changed: 68 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,72 @@ Upgrade your CLI with `pip install lightning-grid --upgrade`
1212
:heart: Find us in our [Slack Community](http://gridai-community.slack.com) to say hi and/or to express your thoughts/questions.
1313

1414
---
15-
## :wrench: April 29, 2022
15+
## :partying_face: May 17, 2022
1616

17-
**CLI version: 0.8.35**
17+
**CLI version: 0.8.47**
18+
19+
Today's release includes several bug fixes to improve the overall experience with Grid.
20+
21+
### Fixes and Enhancements:
22+
23+
- Faster experiment failing when errors are encountered during build or code execution
24+
25+
- Improves the Run-creation flow in the Web UI by fixing error messages reported due to insufficient repo acess or invalid repos
26+
27+
- Stability improvements to the UI and event reloading
28+
29+
- Fixes experience with the drop-down in the experiments table which allows you to add hyperparameter columns
30+
31+
- Allows support for nested requirements.txt files:
32+
Ex:
33+
```# install all mandatory dependencies
34+
-r ./base.txt
35+
36+
# install all extra dependencies for full package testing
37+
-r ./extra.txt
38+
39+
# install all loggers for full package testing
40+
-r ./loggers.txt
41+
42+
# extended list of dependencies for development and run lint and tests
43+
-r ./test.txt
44+
45+
# install all extra dependencies for running examples
46+
-r ./examples.txt
47+
```
48+
49+
---
50+
51+
52+
## :partying_face: May 12, 2022
53+
54+
**CLI version: 0.8.45**
55+
56+
### New and Improved Artifacts!
57+
58+
Today, we release an update to Artifacts which greatly improves stability and UX in the following ways:
59+
60+
- Ensures syncing of artifacts for fast-running experiments
61+
- Ensures all artifacts that are produced by experiments are copied by Grid
62+
- When the experiment stops running, the instance will not shut down until all artifacts have been copied
63+
64+
:::note
65+
Note: With this change, a portion of instance CPU and RAM will be dedicated to artifact syncing processes. For users with memory-intensive code, if your code generates artifacts of size >= 1GB, you may experience a decrease in performance. In these scenarios, we recommend using an instance with more CPU/RAM.
66+
:::
67+
68+
Learn more about Artifacts and these new improvments [here](../docs/features/runs/2_Analyzing%20Runs/3_artifacts.md).
69+
70+
71+
72+
### Additional Fixes and Enhancements
73+
74+
- Fixes issue with calculating pricing estimate during new run creation.
75+
- Improves handling of Session in the event that a process goes out of memory. In these events, the process will be terminated but the Session will remain running.
76+
77+
---
78+
## :wrench: May 3, 2022
79+
80+
**CLI version: 0.8.37**
1881

1982
### Datastore Enhancements
2083

@@ -41,9 +104,9 @@ Please note that direct access to private S3 buckets is not currently supported.
41104

42105
- **[Enhancement]** Grid's syntax for scheduling multiple experiments with combinations of arguments (ie. Grid Search or Random Search) sometimes might conflict with the expected script arguments. That's when you can use none strategy for parameter evaluation. More details can be found [here](../docs/features/runs/1_Creating%20Runs/1_Basic%20Runs/3_sweep-syntax.md#skipping-parameter-evaluation)
43106

44-
- **[Fix]** Resolves an issue with creating Runs from the UI using the random search strategy when the number of trials > experiments.
107+
- **[Fix]** Resolves an issue with creating Runs from the UI using the random search strategy when the nunmber of trials > experiments.
45108

46-
- **[Deprecated]** Changing Session instance type from the UI is currently not supported.
109+
- **[Deprecated]** Changing Session instance type from the UI is currently not supported.
47110

48111

49112
---
@@ -71,7 +134,7 @@ We've deprecated the following CLI options:
71134
`grid run --description`
72135
`grid stop session`
73136

74-
--
137+
---
75138

76139

77140
## :partying_face: March 15, 2022

docs/getting-started/typical-workflow-cli-user.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
sidebar_position: 11
33
description: Using the command line interface
4+
title: Typical Workflow (CLI User)
45
---
56

67
:::tip

docs/getting-started/typical-workflow-web-user.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
sidebar_position: 12
33
description: "Using the web based application https://platform.grid.ai"
4+
title: Typical Workflow (Web User)
45
---
56
import Video from "@site/src/components/Video";
67

0 commit comments

Comments
 (0)