Created
September 26, 2022 14:16
-
-
Save kacperlukawski/3eecc825f512f27fe10f1169cba9ef53 to your computer and use it in GitHub Desktop.
This file contains 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
vectors = [ | |
[.1, .0, .0, .0], | |
[.0, .1, .0, .0], | |
[.0, .0, .1, .0], | |
[.0, .0, .0, .1], | |
[.1, .0, .1, .0], | |
[.0, .1, .0, .1], | |
[.1, .1, .0, .0], | |
[.0, .0, .1, .1], | |
[.1, .1, .1, .1], | |
] | |
client.upload_collection( | |
collection_name="test_collection", | |
vectors=vectors, | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment