Skip to content

Commit 81c0bb9

Browse files
author
rharang
committed
Fix variable name typo in dump_data_to_numpy
1 parent 9a2e2a2 commit 81c0bb9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build_numpy_arrays_for_lightgbm.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def dump_data_to_numpy(mode, output_file, workers=1, batchsize=1000, remove_miss
4343
sys.stdout.write(f"\r{i} / {len(_generator)}")
4444
sys.stdout.flush()
4545
np.savez(output_file, feature_array, label_array)
46-
print(f"\nWrote output to {outputfile}")
46+
print(f"\nWrote output to {output_file}")
4747

4848

4949
if __name__ == '__main__':

0 commit comments

Comments
 (0)