ChiefTheLord commited on
Commit
3cafda0
·
verified ·
1 Parent(s): b7180e6

Update checkpoints-v6.0-discrete/checkpoint-21504/manifest.md

Browse files
checkpoints-v6.0-discrete/checkpoint-21504/manifest.md CHANGED
@@ -1,5 +1,11 @@
1
  ## checkpoint-v6.0-discrete
2
- - AE Source: checkpoint-v2.0
3
 
4
  # Changes
5
- Noise variation `x0 = torch.randn_like(x1)`
 
 
 
 
 
 
 
1
  ## checkpoint-v6.0-discrete
2
+ AE Source: checkpoint-v2.0
3
 
4
  # Changes
5
+ ```
6
+ # Compute latents
7
+ x1 = self.encoder(input_ids)
8
+
9
+ # Noise
10
+ x0 = torch.randn_like(x1)
11
+ ```