Skip to content

Commit a0ce4b8

Browse files
authored
int->int64 in continuous mdr
1 parent ccc9278 commit a0ce4b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mdr/continuous_mdr.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ def transform(self, features):
107107
The constructed feature will be a binary variable, taking the values 0 and 1
108108
109109
"""
110-
new_feature = np.zeros(features.shape[0], dtype=np.int)
110+
new_feature = np.zeros(features.shape[0], dtype=np.int64)
111111

112112
for row_i in range(features.shape[0]):
113113
feature_instance = tuple(features[row_i])

0 commit comments

Comments
 (0)