diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2019-12-02 00:32:14 +0100 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2019-12-02 00:32:14 +0100 |
| commit | a5685dd23cb64618b741ee454b12e8d33dcbea89 (patch) | |
| tree | 369f2371a304623f07d5d362cb36c327f4d444dc /cli | |
| parent | 5fea322e763540e0861a735b0231d393aae47f04 (diff) | |
random
Diffstat (limited to 'cli')
| -rw-r--r-- | cli/app/commands/process/random.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cli/app/commands/process/random.py b/cli/app/commands/process/random.py index 77551aa..900c04f 100644 --- a/cli/app/commands/process/random.py +++ b/cli/app/commands/process/random.py @@ -16,6 +16,9 @@ from PIL import Image def cli(ctx): """ """ + import tensorflow as tf + import tensorflow_hub as hub + module = hub.Module('https://tfhub.dev/deepmind/bigbigan-resnet50/1') # Sample a batch of 8 random latent vectors (z) from the Gaussian prior. Then |
