Spaces:
Runtime error
Runtime error
File size: 800 Bytes
2fa4776 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
GPU_ID=$1 # e.g. 0
IMAGE_PREFIX=$2 # e.g. "anya_front"
ZERO123_PREFIX=$3 # e.g. "zero123-xl"
ELEVATION=$4 # e.g. 0
REST=${@:5:99} # e.g. "system.guidance.min_step_percent=0.1 system.guidance.max_step_percent=0.9"
# change this config if you don't use wandb or want to speed up training
python launch.py --config configs/zero123.yaml --train --gpu $GPU_ID system.loggers.wandb.enable=true system.loggers.wandb.project="claforte-noise_atten" \
system.loggers.wandb.name="${IMAGE_PREFIX}_zero123_${ZERO123_PREFIX}...fov20_${REST}" \
data.image_path=./load/images/${IMAGE_PREFIX}_rgba.png system.freq.guidance_eval=37 \
system.guidance.pretrained_model_name_or_path="./load/zero123/${ZERO123_PREFIX}.ckpt" \
system.guidance.cond_elevation_deg=$ELEVATION \
${REST}
|