cancel
Showing results forย 
Search instead forย 
Did you mean:ย 
Machine Learning
cancel
Showing results forย 
Search instead forย 
Did you mean:ย 

Does databricks feature store support unstructured data ? images for example

anu_sh
New Contributor II
3 REPLIES 3

Kaniz
Community Manager
Community Manager

Hi @anu_sh! My name is Kaniz, and I'm the technical moderator here. Great to meet you, and thanks for your question! Let's see if your peers in the community have an answer to your question first. Or else I will get back to you soon. Thanks.

Hubert-Dudek
Esteemed Contributor III

Yes it does. It is based on spark dataframes (data lake) so you can always load images to dataframe:

df = spark.read.format("image").option("dropInvalid", True).load("data/mllib/images/origin/kittens")

-werners-
Esteemed Contributor III

Here are the supported data types for the Feature Store:

https://docs.databricks.com/applications/machine-learning/feature-store/feature-tables.html#supporte...

As you can see, image is not between them, but you could use BinaryType.