-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
425b2dd
commit 6f1afa8
Showing
3 changed files
with
52 additions
and
23 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
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,28 @@ | ||
export NI=80000 | ||
export LI=1000 | ||
|
||
export CID="aeroplane" | ||
export PARAMS="-cls ${CID} -li ${LI} -ni ${NI} -linf 0.00003 -lp 0.01 -ld 0.5 -sm 1" | ||
python mesh_reconstruction/train.py -ds pascal -eid pascal_proposed_color_airplane_0 $PARAMS -rs 0 | ||
|
||
export CID="car" | ||
export PARAMS="-cls ${CID} -li ${LI} -ni ${NI} -linf 0.00003 -lp 0.01 -ld 0.5 -sm 1" | ||
python mesh_reconstruction/train.py -ds pascal -eid pascal_proposed_color_car $PARAMS -rs 0 | ||
|
||
export CID="chair" | ||
export PARAMS="-cls ${CID} -li ${LI} -ni ${NI} -linf 0.00003 -lp 0.01 -ld 0.5 -sm 1" | ||
python mesh_reconstruction/train.py -ds pascal -eid pascal_proposed_color_chair $PARAMS -rs 0 | ||
|
||
export NI=5000 | ||
export LI=1000 | ||
export CID="aeroplane" | ||
export PARAMS="-cls ${CID} -li ${LI} -ni ${NI} -linf 0.00003 -lp 0.01 -sm 1" | ||
python mesh_reconstruction/train.py -ds pascal -eid pascal_baseline_color_airplane $PARAMS -rs 0 | ||
|
||
export CID="car" | ||
export PARAMS="-cls ${CID} -li ${LI} -ni ${NI} -linf 0.00003 -lp 0.01 -sm 1" | ||
python mesh_reconstruction/train.py -ds pascal -eid pascal_baseline_color_car $PARAMS -rs 0 | ||
|
||
export CID="chair" | ||
export PARAMS="-cls ${CID} -li ${LI} -ni ${NI} -linf 0.00003 -lp 0.01 -sm 1" | ||
python mesh_reconstruction/train.py -ds pascal -eid pascal_baseline_color_chair $PARAMS -rs 0 |
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