-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtrain.sh
More file actions
29 lines (27 loc) · 802 Bytes
/
train.sh
File metadata and controls
29 lines (27 loc) · 802 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/usr/bin/env bash
# python3 train.py \
# --images_folder '../Datasets/Topographies/raw/FiguresStacked Same Size 4X4' \
# --label_path '../Datasets/biology_data/TopoChip/AeruginosaWithClass.csv' \
# --dataset_name 'biological' \
# --n_epochs 200 \
# --img_size 224 \
# --batch_size 32 \
# --num_workers 4 \
# --train_dis_freq 1 \
# --model_name 'WGANGP' \
# --latent_dim 112 \
python train.py \
--images_folder '../../Dataset/Topographies/raw/FiguresStacked 8X8_4X4_2X2 Embossed' \
--label_path '../../Dataset/biology_data/TopoChip/MacrophageWithClass.csv' \
--dataset_name 'biological' \
--n_epochs 5 \
--img_size 224 \
--batch_size 32 \
--num_workers 4 \
--train_dis_freq 1 \
--model_name 'ACCBlurGAN' \
--n_classes 5 \
--latent_dim 112 \
--embedding_dim 112 \
--in_channels 1 \
--out_channels 1 \