added script for creating a pickle for consistent destination points
This commit is contained in:
parent
fef4f8b71f
commit
492c7d7eea
7
dest/create_dest_pickle.py
Normal file
7
dest/create_dest_pickle.py
Normal file
@ -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
Block a user