Skip to content
Open
Changes from all 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
2 changes: 1 addition & 1 deletion lab2/Part2_FaceDetection.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -779,7 +779,7 @@
" y_logit, z_mean, z_logsigma, x_recon = ss_vae(x)\n",
"\n",
" '''TODO: call the SS_VAE loss function to compute the loss'''\n",
" loss, class_loss = ss_vae_loss_function('''TODO arguments''') # TODO\n",
" loss, class_loss, _ = ss_vae_loss_function('''TODO arguments''') # TODO\n",
" \n",
" '''TODO: use the GradientTape.gradient method to compute the gradients.\n",
" Hint: this is with respect to the trainable_variables of the SS_VAE.'''\n",
Expand Down