Skip to content

Commit

Permalink
Better linux build
Browse files Browse the repository at this point in the history
  • Loading branch information
bkerbl committed Jul 13, 2023
1 parent 35698b6 commit 44163b8
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions full_eval.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,13 @@
args = parser.parse_args()

if not args.skip_training:
common_args = " --eval "
# for scene in mipnerf360_outdoor_scenes:
# source = args.mipnerf360 + "/" + scene
# os.system("python train.py -s " + source + " -i images_4 -m " + args.output_path + "/" + scene + common_args)
# for scene in mipnerf360_indoor_scenes:
# source = args.mipnerf360 + "/" + scene
# os.system("python train.py -s " + source + " -i images_2 -m " + args.output_path + "/" + scene + common_args)
common_args = " --quiet --eval --test_iterations -1 "
for scene in mipnerf360_outdoor_scenes:
source = args.mipnerf360 + "/" + scene
os.system("python train.py -s " + source + " -i images_4 -m " + args.output_path + "/" + scene + common_args)
for scene in mipnerf360_indoor_scenes:
source = args.mipnerf360 + "/" + scene
os.system("python train.py -s " + source + " -i images_2 -m " + args.output_path + "/" + scene + common_args)
for scene in tanks_and_temples_scenes:
source = args.tanksandtemples + "/" + scene
os.system("python train.py -s " + source + " -m " + args.output_path + "/" + scene + common_args)
Expand Down

0 comments on commit 44163b8

Please sign in to comment.