Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to match required Tensorflow versions #918

Merged
merged 6 commits into from
Jun 29, 2022
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions examples/generative/ipynb/real_nvp.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@
"\n",
"**Requirements:**\n",
"\n",
"* Tensorflow 2.3\n",
"* Tensorflow probability 0.11.0\n",
"* Tensorflow 2.9.1\n",
"* Tensorflow probability 0.17.0\n",
"\n",
"**Reference:**\n",
"\n",
"[Density estimation using Real NVP](https://arxiv.org/pdf/1605.08803.pdf)"
"[Density estimation using Real NVP](https://arxiv.org/abs/1605.08803)"
]
},
{
Expand Down Expand Up @@ -190,6 +190,7 @@
" @property\n",
" def metrics(self):\n",
" \"\"\"List of the model's metrics.\n",
"\n",
" We make sure the loss tracker is listed as part of `model.metrics`\n",
" so that `fit()` and `evaluate()` are able to `reset()` the loss tracker\n",
" at the start of each epoch and at the start of an `evaluate()` call.\n",
Expand Down Expand Up @@ -322,7 +323,7 @@
"metadata": {
"colab": {
"collapsed_sections": [],
"name": "real_nvp",
"name": "..\\examples\\generative\\real_nvp",
brendenconnors marked this conversation as resolved.
Show resolved Hide resolved
"private_outputs": false,
"provenance": [],
"toc_visible": true
Expand Down
Loading