Giux22 commited on
Commit
69f6592
1 Parent(s): 636a8ce

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +20 -0
README.md ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ["0102", "0295", "0071", "0174", "0106", "0116", "0065"]
2
+
3
+ eval_batch_size = 25 # how many images to sample during evaluation
4
+ num_epochs = 10000
5
+ gradient_accumulation_steps = 1
6
+ learning_rate = 5e-5
7
+
8
+ transforms.Resize((config.image_size, config.image_size)),
9
+ transforms.RandomHorizontalFlip(),
10
+ transforms.ToTensor(),
11
+ transforms.Normalize([0.5], [0.5]),
12
+
13
+
14
+ "DownBlock2D", # a regular ResNet downsampling block
15
+ "DownBlock2D",
16
+ "DownBlock2D",
17
+ "DownBlock2D",
18
+ "AttnDownBlock2D", # a ResNet downsampling block with spatial self-attention
19
+ "DownBlock2D",
20
+ ),