Skip to content

Commit 73299cc

Browse files
wip
1 parent ec3cea1 commit 73299cc

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,4 +166,5 @@ cython_debug/
166166
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
167167
#.idea/
168168

169-
.vscode/
169+
.vscode/
170+
*.out.*

submit_eval.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ DATASET=$2
1515

1616
echo "Evaluating controlnet model: $CONTROLNET_CKPT with dataset: $DATASET"
1717

18+
mkdir -p outputs/$CONTROLNET_CKPT
19+
1820
python evaluate.py \
1921
--verbose True \
2022
--input_dataset $DATASET \
@@ -23,4 +25,5 @@ python evaluate.py \
2325
--controlnet_ckpt $CONTROLNET_CKPT \
2426
--vae "/weka/applied-shared/sd3_ref/sd3_vae.safetensors" \
2527
--sampler "euler" \
26-
--text_encoder_device "cuda"
28+
--text_encoder_device "cuda" \
29+
--out_dir "outputs/$CONTROLNET_CKPT" \

0 commit comments

Comments
 (0)