-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy patheval_cls.py
More file actions
59 lines (42 loc) · 2.08 KB
/
eval_cls.py
File metadata and controls
59 lines (42 loc) · 2.08 KB
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
import numpy as np
import argparse
import torch
from models import cls_model
from utils import create_dir
def create_parser():
"""Creates a parser for command-line arguments.
"""
parser = argparse.ArgumentParser()
parser.add_argument('--num_cls_class', type=int, default=3, help='The number of classes')
parser.add_argument('--num_points', type=int, default=10000, help='The number of points per object to be included in the input data')
# Directories and checkpoint/sample iterations
parser.add_argument('--load_checkpoint', type=str, default='model_epoch_0')
parser.add_argument('--i', type=int, default=0, help="index of the object to visualize")
parser.add_argument('--test_data', type=str, default='./data/cls/data_test.npy')
parser.add_argument('--test_label', type=str, default='./data/cls/label_test.npy')
parser.add_argument('--output_dir', type=str, default='./output')
parser.add_argument('--exp_name', type=str, default="exp", help='The name of the experiment')
return parser
if __name__ == '__main__':
parser = create_parser()
args = parser.parse_args()
args.device = torch.device("cuda" if torch.cuda.is_available() else 'cpu')
create_dir(args.output_dir)
# ------ TO DO: Initialize Model for Classification Task ------
model =
# Load Model Checkpoint
model_path = './checkpoints/cls/{}.pt'.format(args.load_checkpoint)
with open(model_path, 'rb') as f:
state_dict = torch.load(f, map_location=args.device)
model.load_state_dict(state_dict)
model.eval()
print ("successfully loaded checkpoint from {}".format(model_path))
# Sample Points per Object
ind = np.random.choice(10000,args.num_points, replace=False)
test_data = torch.from_numpy((np.load(args.test_data))[:,ind,:])
test_label = torch.from_numpy(np.load(args.test_label))
# ------ TO DO: Make Prediction ------
pred_label =
# Compute Accuracy
test_accuracy = pred_label.eq(test_label.data).cpu().sum().item() / (test_label.size()[0])
print ("test accuracy: {}".format(test_accuracy))