Skip to content
Snippets Groups Projects
Commit a138f098 authored by bbauvin's avatar bbauvin
Browse files

Added some logging to SCM

parent 18b32a77
Branches
Tags
No related merge requests found
...@@ -62,7 +62,9 @@ def transformData(dataArray): ...@@ -62,7 +62,9 @@ def transformData(dataArray):
nbExamples = dataArray.shape[0] nbExamples = dataArray.shape[0]
featureSequence = ["" for featureIndex in range(dataArray.shape[1])] featureSequence = ["" for featureIndex in range(dataArray.shape[1])]
featureIndexByRule = np.arange(dataArray.shape[1], dtype=np.uint32) featureIndexByRule = np.arange(dataArray.shape[1], dtype=np.uint32)
logging.debug("Start:\t Creating binary attributes")
binaryAttributes = LazyBaptisteRuleList(featureSequence, featureIndexByRule) binaryAttributes = LazyBaptisteRuleList(featureSequence, featureIndexByRule)
logging.debug("Done:\t Creating binary attributes")
logging.debug("Start:\t Packing Data") logging.debug("Start:\t Packing Data")
packedData = _pack_binary_bytes_to_ints(dataArray, 64) packedData = _pack_binary_bytes_to_ints(dataArray, 64)
del dataArray del dataArray
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment