-
Notifications
You must be signed in to change notification settings - Fork 27
/
plot.py
130 lines (112 loc) · 4.38 KB
/
plot.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
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# @Time : 2020/9/16 11:20
# @Author : Huatao
# @Email : 735820057@qq.com
# @File : plot.py
# @Description :
import argparse
import numpy as np
import seaborn as sn
import matplotlib.pyplot as plt
from sklearn import metrics
from sklearn.manifold import TSNE
from sklearn.decomposition import PCA
from matplotlib import pyplot
SENSORS = ["Accelerometer", "Gyroscope", "Magnetometer"]
SENSOR_NAMES = ['ACC-X', 'ACC-Y', 'ACC-Z', 'GYRO-X', 'GYRO-Y', 'GYRO-Z', 'MAG-X', 'MAG-Y', 'MAG-Z']
COLOR_BLUE = 'tab:blue'; COLOR_ORANGE = 'tab:orange'; COLOR_GREEN = 'tab:green'
COLOR_RED = 'tab:red'; COLOR_PURPLE = 'tab:purple'
COLOR_LIST = [COLOR_BLUE, COLOR_ORANGE, COLOR_GREEN, COLOR_RED]
LINE_STYLES = ['solid', 'dotted']
def plot_tsne(data, labels, dimension=2, label_names=None):
tsne = TSNE(n_components=dimension)
data_ = tsne.fit_transform(data)
ls = np.unique(labels)
plt.figure()
bwith = 2
TK = plt.gca()
TK.spines['bottom'].set_linewidth(bwith)
TK.spines['left'].set_linewidth(bwith)
TK.spines['top'].set_linewidth(bwith)
TK.spines['right'].set_linewidth(bwith)
for i in range(ls.size):
index = labels == ls[i]
x = data_[index, 0]
y = data_[index, 1]
if label_names is None:
plt.scatter(x, y, label=str(int(ls[i])))
else:
plt.scatter(x, y, label=label_names[int(ls[i])])
plt.xticks([])
plt.yticks([])
plt.legend(loc='lower right') #, prop={'size': 20, 'weight':'bold'}
plt.show()
return data_
def plot_pca(data, labels, dimension=2):
pca = PCA(n_components=dimension)
data_ = pca.fit_transform(data)
ls = np.unique(labels)
plt.figure()
for i in range(ls.size):
index = labels == ls[i]
x = data_[index, 0]
y = data_[index, 1]
plt.scatter(x, y, label=str(ls[i]))
plt.show()
# plt.close()
def plot_matrix(matrix, labels_name=None):
plt.figure()
row_sum = matrix.sum(axis=1)
matrix_per = np.copy(matrix).astype('float')
for i in range(row_sum.size):
if row_sum[i] != 0:
matrix_per[i] = matrix_per[i] / row_sum[i]
# plt.figure(figsize=(10, 7))
if labels_name is None:
labels_name = "auto"
sn.heatmap(matrix_per, annot=True, fmt='.2f', xticklabels=labels_name, yticklabels=labels_name)
plt.ylabel('Actual')
plt.xlabel('Predicted')
plt.show()
# plt.savefig()
return matrix
def plot_embedding(embeddings, labels, label_index=0, reduce=1000, label_names=None):
embeddings = embeddings.reshape(embeddings.shape[0], embeddings.shape[1] * embeddings.shape[2])
index_rand = np.arange(embeddings.shape[0])
np.random.shuffle(index_rand)
index_rand = index_rand[:reduce]
if isinstance(label_index, list):
label_composite = np.zeros(labels.shape[0])
for i in range(len(label_index)):
label_composite += labels[:, 0, label_index[i]] * pow(10, len(label_index) - 1 - i)
plot_tsne(embeddings[index_rand, :], label_composite[index_rand])
return None
else:
data_tsne = plot_tsne(embeddings[index_rand, :], labels[index_rand, 0, label_index], label_names=label_names)
return data_tsne, labels[index_rand, 0, label_index]
# plot_pca(embeddings[index_rand, :], labels[index_rand, label_index])
def plot_reconstruct_sensor(sensors, sensors_re, sensor_dimen=3):
sensor_num = sensors.shape[1] // 3
fig, axs = plt.subplots(sensor_num)
fig.suptitle('IMU Sensor Data') #Sensor Reconstruction Comparison
x = np.arange(sensors.shape[0])
for i in range(sensor_num):
index_start = i * sensor_dimen
axs[i].set_xlabel("Index")
axs[i].set_ylabel(SENSORS[i])
for j in range(sensor_dimen):
dimen = index_start + j
axs[i].plot(x, sensors[:, dimen], label=SENSOR_NAMES[dimen], linestyle=LINE_STYLES[0], color=COLOR_LIST[j]) #
axs[i].plot(x, sensors_re[:, dimen], label=SENSOR_NAMES[dimen], linestyle=LINE_STYLES[1], color=COLOR_LIST[j])
plt.show()
def plot_roc_auc(y_pred, y_true):
auc = metrics.roc_auc_score(y_true, y_pred)
print('ROC AUC=%.3f' % (auc))
fpr, tpr, thre = metrics.roc_curve(y_true, y_pred)
pyplot.plot(fpr, tpr, marker='.')
pyplot.xlabel('False Positive Rate')
pyplot.ylabel('True Positive Rate')
pyplot.show()
return fpr, tpr, thre
# if __name__ == "__main__":