featureform
featureform copied to clipboard
The Virtual Feature Store. Turn your existing data infrastructure into a feature store.
…o GetPrimaryTableName
If a feature is registered without a provider, it defaults to registering it in the offline store. With an online provider (only online is valid and makes sense) it will...
This PR is adding the pre-commit functionality with detect-secrets hook. [pre-commit](https://pre-commit.com/) is a tool to run some hooks prior to committing changes to the repository locally. This PR is just...
# Errror Description When **trying to search by vector** an error is raised ``` neighbors = space.nearest_neighbors(vector=[0,0,1], num=2) ``` ```python Traceback (most recent call last): File "/workspace/main.py", line 31, in...
Hi, I read through the tutorial and was trying to load a trained embedding from fasttext using the `multiset` method but got into this error. A further search on this...
I'm using EmbeddingHub in local mode like this: ```python import embeddinghub as eh hub = eh.connect(eh.LocalConfig("/path/to/data")) term_space = hub.create_space("terms", dims=768) from sentence_transformers import SentenceTransformer model = SentenceTransformer('all-mpnet-base-v2') terms = ["apple",...
The [docs](https://docs.featureform.com/guide/deploying_with_docker) say: ```bash docker run -d -v /custom/mount:/root/.embeddinghub/data -p 7462:7462 featureformcom/embeddinghub ``` However, the directory that is created in `embedding_store.cc` is `metadata` instead of `data`. Furthermore (and I'm not...
Hi! Is it possible to choose distance metric for HNSW algorithm? As I see, it's using L2 as default, but in hnswlib also Cosine similarity and Dot product is supported.
Found this issue when I tried to import the Python package after installing a local build via `pip install -e .` There seems to be some code missing under `sdk/python`:...