Importing multiple vector from a dataframe into the collection
Answer here: Scores for Hybrid search Support hi @Rohini_vaidya !! Here is how you can do that: vectors = { "a_vector": [1,2,3], "b_vector": [1,2,3,4], "c_vector": [1,2,3,4,5] }...
View ArticleCould not import multiple vectors into collection using insert many
answer here: Scores for Hybrid search - #6 by DudaNogueira
View ArticleCan't connect to Weviate Client in using helper function in Container
hi @Rishav_Kumar_Paramha Welcome to our community From what you are describing, indeed Weaviate should be available. Are you running the python code from your computer, or from within a second...
View ArticleBatch Upsert functionality
hi @Nick_Youngblut !! Welcome to our community That’s a common solution. Here is a code sample for that: from weaviate.util import generate_uuid5 properties = { "text": "this is a text", "category":...
View ArticleBatch Upsert functionality
Thanks @DudaNogueira ! I’m still not seeing how an upsert workflow can feasibly work with adaptive chunking of documents. Since the number of content of each chunk can change, how could one upsert...
View ArticleHow to planning HNSW index ef, efConstruction and maxConnections parameters...
Hi @DevelMyCry !! First, any specific reason to use 1.26.0? The latest one from this branch is 1.26.13, and those 13 releases are the ones that bring all patches we backported from 1.28 Of course,...
View ArticleBatch Upsert functionality
Any time For chunking, there isn’t a one recipe fits all. But definitely, if you have a document that changed one part and your chunking strategy is not static, you need to delete the entire document...
View ArticleWeaviate Holding Locks on EFS Files Causing disk quota exceeded Errors
Description We are ingesting and chunking data from files, and are creating tens of thousands of tenants under a single weaviate class. Our process runs fine for a short time, but weaviate eventually...
View ArticleHow to remove reference property
we have added the following ref property, now wondering how to remove it without recreating the collection and losing data. from weaviate.classes.config import ReferenceProperty category =...
View ArticleWeaviate Backup - 50,000 blocks ERROR CODE: BlockListTooLong
Hi @sanjeev1678 , Following back this topic, I think Add environment overrides for azure blocksize and concurrency by donomii · Pull Request #6468 · weaviate/weaviate · GitHub should have fix this...
View ArticleFuzzy matching algorithms
In my application I need to apply apply fuzzy search on a text field to find matches even if the string was mis-typed. Imagine an application that needs to filter objects on a “surname” field and...
View ArticlePydantic classes as single source of truth
I am working on a project where the backend is a python application using weaviate and a next.js frontend to interact with the users. I would like to mantain a single source for the data schema and am...
View ArticlePydantic classes as single source of truth
Hello and happy new year! We should have direct support for this in the clients: weaviate.io Python | Weaviate Utilize the Python client library to access Weaviate and streamline data processes....
View ArticleHow to remove reference property
Hello! Removing properties (data and references) is not possible. You’d have to create a new collection and transfer your data over. Or simply ignore that the reference property is there
View ArticleHow to remove reference property
Thanks for the fast reply. How to transfer your data over from one collection to another , is it easy ? Or simply ignore that the reference property is there I wish to ignore it, however, I am...
View ArticleWeaviate requires a string of UUID format when adding json Schema
Description Hi I am trying to add the following swagger schema for an API endpoint using python client v4: {'tags': ['Account'], 'summary': 'Update Account', 'security': [{'directLogin': [],...
View ArticleHow to remove reference property
should we add 2 empty columns for the 2 references in the datafram when writing to weaviate ?
View ArticleIs there a GUI console to access the db data after install the weaviate?
Description I installed the latest version of weaviate on my local with docker, I would like to know how to access the data with the some kind of GUI console, does it support a default console , or is...
View ArticleHow to remove reference property
In the python client you could just leave it out. Not sure about the spark connector, I’ll ping someone
View Article