forked from PRBonn/LiDiff
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
prep eval for cars reduced trainings
- Loading branch information
1 parent
49b9614
commit e940ad2
Showing
6 changed files
with
85 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,6 +19,7 @@ train: | |
lr: 0.0001 | ||
batch_size: 8 | ||
decay_lr: 1.0e-4 | ||
class_conditional: False | ||
|
||
diff: | ||
beta_start: 3.5e-5 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
#!/bin/bash | ||
|
||
cd /home/ekirby/workspace/LiDiff | ||
|
||
# Directory containing the config files | ||
config_dir="lidiff/config/object_generation" | ||
weights_dir="lidiff/checkpoints" | ||
|
||
config_cars_reduced="$config_dir/config_car_gen_reduced_dataset.yaml" | ||
weights_cars_reduced="$weights_dir/car_gen_dataset_limited_1_epoch=99.ckpt" | ||
|
||
echo "Running recreation for cars reduced dataset" | ||
python lidiff/tools/object_pcd_denoising.py -c $config_cars_reduced -w $weights_cars_reduced -n car_gen_reduced_1 -t recreate -cls vehicle.car | ||
echo "Command completed" | ||
|
||
config_cars_reduced="$config_dir/config_car_gen_reduced_points.yaml" | ||
weights_cars_reduced="$weights_dir/car_gen_point_limited_1_epoch=99.ckpt" | ||
|
||
echo "Running recreation for cars subsampled points dataset" | ||
python lidiff/tools/object_pcd_denoising.py -c $config_cars_reduced -w $weights_cars_reduced -n car_gen_subsampled_1 -t recreate -cls vehicle.car | ||
echo "Command completed" |