forked from dpwe/audfprint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
comp_file_lines.py
executable file
·57 lines (43 loc) · 1.42 KB
/
comp_file_lines.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
#!/usr/bin/env python
# coding=utf-8
# comp_file_lines.py
#
# Python script to count number of exact matching lines between two files, no edit distance
# 2014-09-07 Dan Ellis [email protected]
from __future__ import print_function
import sys
import numpy as np
verbose = False
onefile = False
if len(sys.argv) == 2:
# Special case: if a single file, compare the first ws-separated field with remainder
onefile = True
print("onefile true")
elif len(sys.argv) < 3:
print("Usage:", sys.argv[0], "file1.txt file2.txt [verbose]")
sys.exit(1)
file1 = sys.argv[1]
if not onefile:
file2 = sys.argv[2]
if len(sys.argv) > 3:
verbose = True
# Read in the files
with open(file1) as f:
item1s = [val.rstrip("\n") for val in f]
if onefile:
# Set item2s to everything after first block of WS in each line.
item2s = [item.split(None, 1)[1] for item in item1s]
# Replace items1s with everything before first WS in each line.
item1s = [item.split(None, 1)[0] for item in item1s]
else:
with open(file2) as f:
item2s = [val.rstrip("\n") for val in f]
# Now, make a boolean vector of correctness
correct = np.zeros(len(item1s), np.float)
for ix, items in enumerate(zip(item1s, item2s)):
if items[0] == items[1]:
correct[ix] = 1.0
else:
if verbose:
print(items)
print(int(np.sum(correct)), "correct out of", len(correct), "= %.1f%%" % (100.0 * np.mean(correct)))