summaryrefslogtreecommitdiffstats
path: root/data/pair-matching
diff options
context:
space:
mode:
Diffstat (limited to 'data/pair-matching')
-rwxr-xr-xdata/pair-matching/roc.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/data/pair-matching/roc.py b/data/pair-matching/roc.py
index dd991b4..c121e97 100755
--- a/data/pair-matching/roc.py
+++ b/data/pair-matching/roc.py
@@ -41,8 +41,8 @@ if __name__ == "__main__":
ap_false = ap[:,1][indices]
ap_true = ap[:,0][indices]
plt.plot(ap_false,ap_true,label="Face recognition")
- plt.xlabel("False positive rate [\%]")
- plt.ylabel("True positive rate [\%]")
+ plt.xlabel("False positive rate [%]")
+ plt.ylabel("True positive rate [%]")
np.random.seed()
std = map(float,sys.argv[2].split(","))
sk_data = np.loadtxt(sys.argv[1],comments="#",delimiter=",")