Are there any pertained models to generated image, text,video and audio embeddings in Julia ? If yes where can I find /download them to use?

I want to find embedding of different type of datafiles and save them. Since I am quite new to Julia I am not being able to find appropriate models that does these tasks.

Thank you

If you need state-of-the-art models to apply them to your data, instead of developing new models, I think the best approach is to call corresponding python libraries from Julia (eg sentence-transformers, InstructorEmbeddings, etc).
It’s effectively zero-overhead, and installing Python packages through CondaPkg is arguably even more straightforward and reproducible than common Python workflows.

1 Like

Latter sounds neat I wasn’t aware we can do that :confused:
Let me try them out.

Thanks for helping