From b01d1862f38d39d2a8b7fd6392215aec01b5c4bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Geron?= Date: Sat, 16 Apr 2022 17:32:04 +1200 Subject: [PATCH] Add keras-tuner, google cloud aiplatform, and google cloud storage --- environment.yml | 3 +++ requirements.txt | 7 +++++++ 2 files changed, 10 insertions(+) diff --git a/environment.yml b/environment.yml index 90a346e..8243ded 100644 --- a/environment.yml +++ b/environment.yml @@ -31,6 +31,7 @@ dependencies: - wheel # built-package format for pip - widgetsnbextension=3.5 # interactive HTML widgets for Jupyter notebooks - pip: + - keras-tuner~=1.1.2 # used in chapters 10 and 19 for hyperparameter tuning - tensorboard-plugin-profile~=2.5.0 # profiling plugin for TensorBoard - tensorboard~=2.8.0 # TensorFlow's visualization toolkit - tensorflow-addons~=0.16.1 # used in chapters 11 & 16 (for AdamW & seq2seq) @@ -41,3 +42,5 @@ dependencies: - transformers~=4.16.2 # Natural Language Processing lib for TF or PyTorch - urlextract~=1.5.0 # optionally used in chapter 3, exercise 4 - gym[atari,accept-rom-license]~=0.21.0 # used only in chapter 18 + - google-cloud-aiplatform~=1.12.0 # used only in chapter 19 + - google-cloud-storage~=2.2.1 # used only in chapter 19 diff --git a/requirements.txt b/requirements.txt index bc37b92..7124570 100644 --- a/requirements.txt +++ b/requirements.txt @@ -36,6 +36,9 @@ tensorboard-plugin-profile~=2.5.0 tensorflow-datasets~=4.5.2 tensorflow-hub~=0.12.0 +# Used in chapter 10 and 19 for hyperparameter tuning +keras-tuner~=1.1.2 + # Optional: used in chapters 11 & 16 (for AdamW & seq2seq) tensorflow-addons~=0.16.1 @@ -60,6 +63,10 @@ pyglet~=1.5.21 # (i.e., without screen, e.g., Colab or VM) +##### Google Cloud Platform - used only in chapter 19 +google-cloud-aiplatform~=1.12.0 +google-cloud-storage~=2.2.1 + ##### Additional utilities # Efficient jobs (caching, parallelism, persistence)