Exam Name: | Oracle AI Vector Search Professional | ||
Exam Code: | 1z0-184-25 Dumps | ||
Vendor: | Oracle | Certification: | Oracle Cloud Infrastructure |
Questions: | 60 Q&A's | Shared By: | joe |
Which statement best describes the capability of Oracle Data Pump for handling vector data in thecontext of vector search applications?
What is the primary function of an embedding model in the context of vector search?
Which Python library is used to vectorize text chunks and the user’s question in the following example?
import oracledb
connection = oracledb.connect(user=un, password=pw, dsn=ds)
table_name = "Page"
with connection.cursor() as cursor:
create_table_sql = f"""
CREATE TABLE IF NOT EXISTS {table_name} (
id NUMBER PRIMARY KEY,
payload CLOB CHECK (payload IS JSON),
vector VECTOR
)"""
try:
cursor.execute(create_table_sql)
except oracledb.DatabaseError as e:
raise
connection.autocommit = True
from sentence_transformers import SentenceTransformer
encoder = SentenceTransformer('all-MiniLM-L12-v2')