Switch language한국어
Back to the list

Building ONNX Embedding Workflows in Oracle AI Database with Python

TL;DR AI

Key summary

2 min read
  1. The guide shows how to load an augmented ONNX embedding model into Oracle AI Database with DBMS_VECTOR.LOAD_ONNX_MODEL.

  2. It then uses SQL functions like VECTOR_EMBEDDING to generate embeddings, store them in native VECTOR columns, and validate the model.

  3. Semantic search is performed in-database with VECTOR_DISTANCE, reducing the need to move data into separate vector services.

  4. The same workflow is also demonstrated through LangChain using OracleEmbeddings and OracleVS.

Read the original