Created
July 8, 2024 18:25
-
-
Save a-agmon/8e9b41f5c87fd817054b1b9af74cd65a 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
Arc::new(Schema::new(vec![ | |
Field::new("filename", DataType::Utf8, false), | |
Field::new( | |
"vector", | |
DataType::FixedSizeList(Arc::new(Field::new("item", DataType::Float32, true)), 384), | |
true, | |
), | |
])) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment