haiphamcse commited on
Commit
1fff62e
·
verified ·
1 Parent(s): a142715

Upload folder using huggingface_hub

Browse files
Files changed (2) hide show
  1. train_cifar1.sh +11 -0
  2. train_imagenette1.sh +11 -0
train_cifar1.sh ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ python train_unet.py \
2
+ --dataset cifar10 \
3
+ --data-root ./data \
4
+ --cifar-split train \
5
+ --single-class \
6
+ --class-id 1 \
7
+ --epochs 100 \
8
+ --batch-size 2166 \
9
+ --config unet_cifar.yaml \
10
+ --save-dir runs/cfm_unet/cifar1_100ep \
11
+ --log-dir runs/cfm_unet/cifar1_100ep/tb \
train_imagenette1.sh ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ python train_unet.py \
2
+ --dataset imagenette \
3
+ --data-root ./data \
4
+ --imagenette-split train \
5
+ --single-class \
6
+ --class-id 1 \
7
+ --epochs 100 \
8
+ --batch-size 16 \
9
+ --config unet_cifar.yaml \
10
+ --save-dir runs/cfm_unet/imagenette1_128_100ep \
11
+ --log-dir runs/cfm_unet/imagenette1_128_100ep/tb \