From b7b153d84a6e2766e6969812bc6aad1f5d9997a7 Mon Sep 17 00:00:00 2001 From: Danny Zhu Date: Mon, 12 Jul 2021 11:03:10 -0700 Subject: [PATCH] docs: add release notes for 0.16.2 (#2709) --- docs/how-to/notebooks.txt | 10 +++--- docs/release-notes.txt | 32 ++++++++++++++++++- docs/release-notes/2644-pytorch-geometric.txt | 8 ----- docs/release-notes/2675-det-deploy-aws.txt | 6 ---- docs/release-notes/2694-boolean-hp-value.txt | 6 ---- ...8-reduce-single-trial-exp-page-loading.txt | 6 ---- docs/release-notes/5432-local-bind-mount.txt | 7 ---- 7 files changed, 36 insertions(+), 39 deletions(-) delete mode 100644 docs/release-notes/2644-pytorch-geometric.txt delete mode 100644 docs/release-notes/2675-det-deploy-aws.txt delete mode 100644 docs/release-notes/2694-boolean-hp-value.txt delete mode 100644 docs/release-notes/2708-reduce-single-trial-exp-page-loading.txt delete mode 100644 docs/release-notes/5432-local-bind-mount.txt diff --git a/docs/how-to/notebooks.txt b/docs/how-to/notebooks.txt index 1fbf97f561e..66199734c5f 100644 --- a/docs/how-to/notebooks.txt +++ b/docs/how-to/notebooks.txt @@ -189,14 +189,14 @@ notebook: $ cat > config.yaml << EOL bind_mounts: - - host_path: /shared/home/jimmy - container_path: /shared/home/jimmy + - host_path: /shared/home/jimmy + container_path: /shared/home/jimmy EOL $ det notebook start --config-file config.yaml -To launch a notebook with `det deploy local cluster-up`, a user can add -the `--auto-bind-mount` flag which mounts the user's home directory into -the task containers by default: +To launch a notebook with ``det deploy local cluster-up``, a user can +add the ``--auto-bind-mount`` flag, which mounts the user's home +directory into the task containers by default: .. code:: diff --git a/docs/release-notes.txt b/docs/release-notes.txt index 332d35b0844..5317068f189 100644 --- a/docs/release-notes.txt +++ b/docs/release-notes.txt @@ -8,6 +8,36 @@ Version 0.16 ************** +Version 0.16.2 +============== + +**Release Date:** July 9, 2021 + +**New Features** + +- Make ``det deploy aws up`` automatically bind-mount FSx and EFS + directories into task containers when available. + +- Make ``det deploy local`` bind-mount the user's home directory into + task containers. The mounted directory can be changed with the + ``--auto-bind-mount=`` option and mounting can be disabled + entirely with ``--no-auto-bind-mount``. See + :ref:`install-using-deploy` for details. + +**Improvements** + +- PyTorchTrial: Improve support for custom batches in PyTorch, e.g., as + used in ``pytorch_geometric``. See + :meth:`~determined.pytorch.PyTorchTrial.get_batch_length` or + ``examples/graphs/proteins_pytorch_geometric`` for further details. + +**Bug Fixes** + +- WebUI: Avoid waiting for an extra polling cycle to load trial data + when loading single-trial experiments. +- WebUI: Fix an issue with boolean hyperparameter values not being + rendered in learning curve tables. + Version 0.16.1 ============== @@ -35,7 +65,7 @@ Version 0.16.1 existing pending experiments may error out and need to be resubmitted. -**Fixes** +**Bug Fixes** - Support using Docker images with ``EXPOSE`` commands as images for notebooks/shells/TensorBoards. Previously, the ``EXPOSE`` command diff --git a/docs/release-notes/2644-pytorch-geometric.txt b/docs/release-notes/2644-pytorch-geometric.txt deleted file mode 100644 index 3cc449f6925..00000000000 --- a/docs/release-notes/2644-pytorch-geometric.txt +++ /dev/null @@ -1,8 +0,0 @@ -:orphan: - -**Improvements** - -- PyTorchTrial: improved support for custom batches in PyTorch, e.g. as - used in ``pytorch_geometric``. See ``PyTorchTrial`` method - ``get_batch_length`` or - ``examples/graphs/proteins_pytorch_geometric`` for further details. diff --git a/docs/release-notes/2675-det-deploy-aws.txt b/docs/release-notes/2675-det-deploy-aws.txt deleted file mode 100644 index 019fa389907..00000000000 --- a/docs/release-notes/2675-det-deploy-aws.txt +++ /dev/null @@ -1,6 +0,0 @@ -:orphan: - -**Improvements** - -- ``det deploy aws up`` will automatically bind-mount the path to the - mounted FSx and EFS into task containers. diff --git a/docs/release-notes/2694-boolean-hp-value.txt b/docs/release-notes/2694-boolean-hp-value.txt deleted file mode 100644 index 8d5d3d93817..00000000000 --- a/docs/release-notes/2694-boolean-hp-value.txt +++ /dev/null @@ -1,6 +0,0 @@ -:orphan: - -**Fix** - -- Fix an issue with boolean hyperparameter values not being rendered in - learning curve table. diff --git a/docs/release-notes/2708-reduce-single-trial-exp-page-loading.txt b/docs/release-notes/2708-reduce-single-trial-exp-page-loading.txt deleted file mode 100644 index 0561cb21538..00000000000 --- a/docs/release-notes/2708-reduce-single-trial-exp-page-loading.txt +++ /dev/null @@ -1,6 +0,0 @@ -:orphan: - -**BUG FIXES** - -- WebUI: Avoid waiting for an extra polling cycle to load trial data - when loading single trial experiments. diff --git a/docs/release-notes/5432-local-bind-mount.txt b/docs/release-notes/5432-local-bind-mount.txt deleted file mode 100644 index 4715d98e9d1..00000000000 --- a/docs/release-notes/5432-local-bind-mount.txt +++ /dev/null @@ -1,7 +0,0 @@ -:orphan: - -**Improvements** - -- Add a flag `det deploy local --auto-bind-mount="path"` to mount the - specified directory (default to the user's home directory) into the - cluster's task containers and add a flag to disable this feature.