-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript-20090712a.py
38 lines (31 loc) · 985 Bytes
/
script-20090712a.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
"""
This is for testing changes to the reduced khatri rao squaring function.
"""
import logging
import sys
import time
import numpy as np
from khatrisvd import khorr
from khatrisvd import util
logging.basicConfig(level=logging.DEBUG)
def main():
start_time = time.time()
filename = sys.argv[1]
logging.debug('reading input lines')
fin = open(filename)
lines = fin.readlines()
fin.close()
logging.debug('converting input lines to data matrix')
X = util.lines_to_comma_separated_matrix(lines, has_headers=True)
logging.debug('standardizing the data matrix')
Z = khorr.get_standardized_matrix(X)
logging.debug('augmenting the data matrix')
W = khorr.standardized_to_augmented_C(Z)
end_time = time.time()
print 'nseconds:', end_time - start_time
print 'W.size:', W.size
print 'W.itemsize:', W.itemsize
print 'W.size * W.itemsize:', W.size * W.itemsize
raw_input('kbye\n')
if __name__ == '__main__':
main()