-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathtest_shapenet.py
25 lines (19 loc) · 973 Bytes
/
test_shapenet.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import argparse
from macarons.testers.shapenet import *
dir_path = os.path.abspath(os.path.dirname(__file__))
test_configs_dir = os.path.join(dir_path, "./configs/test/")
if __name__ == '__main__':
# Parser
parser = argparse.ArgumentParser(description='Script to test occupancy probability and surface coverage gain '
'modules on ShapeNetCore.v1 meshes.')
parser.add_argument('-c', '--config', type=str, help='name of the config file. '
'Default is "test_on_shapenet_seen_categories_config.json".')
args = parser.parse_args()
if args.config:
params_name = args.config
else:
params_name = "test_on_shapenet_seen_categories_config.json"
params_name = os.path.join(test_configs_dir, params_name)
test_params = load_params(params_name)
with torch.no_grad():
run_test(test_params)