added script for creating a pickle for consistent destination points
parent
fef4f8b71f
commit
492c7d7eea
@ -0,0 +1,7 @@
|
||||
import sys
|
||||
import pickle
|
||||
import numpy as np
|
||||
|
||||
output_file_name, dimension, count = sys.argv[1:]
|
||||
|
||||
pickle.dump(np.random.random((int(count), int(dimension))), open(output_file_name, 'w'))
|
Loading…
Reference in New Issue