Created
February 16, 2017 19:33
-
-
Save previtus/0fb0c062e8c6bc59173cda48b0964637 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # numpy save and load: | |
| np.save(open('labels_from_segments.npy', 'w'), labels_from_segments) | |
| np.save(open('labels_from_model.npy', 'w'), labels_from_model) | |
| labels_from_segments = np.load(open('labels_from_segments.npy')) | |
| labels_from_model = np.load(open('labels_from_model.npy')) |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
for Python 3