Skip to content

Commit

Permalink
small changes
Browse files Browse the repository at this point in the history
  • Loading branch information
kisnikser committed Nov 26, 2024
1 parent 7a8ad24 commit 09f0593
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion demo/vae_invertible_gaussian.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def parse_arguments() -> argparse.Namespace:
N = 20 # Number of categorical distributions

### CHANGE IT TO 1/K CATEGORICAL APPROXIMATION
loc_prior = torch.zeros(N, K - 1, device=device)
loc_prior = torch.ones(N, K - 1, device=device)
scale_prior = torch.ones(N, K - 1, device=device)

temp = INITIAL_TEMP
Expand Down

0 comments on commit 09f0593

Please sign in to comment.