File size: 512 Bytes
fadb92b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/env bash

DATA=data/coco_s3d_bw/
FOLDER=test
CKPT=checkpoints/s3dbw_sem_res256_ep0449.pth

python predict.py \
    --dataset_name=stru3d \
    --dataset_root=${DATA}/${FOLDER} \
    --checkpoint=${CKPT} \
    --output_dir=pred_outputs/s3d_${FOLDER}_preds \
    --semantic_classes=19 \
    --input_channels 3 \
    --poly2seq \
    --seq_len 512 \
    --num_bins 32 \
    --disable_poly_refine \
    --dec_attn_concat_src \
    --per_token_sem_loss \
    --use_anchor \
    --ema4eval \
    --save_pred