Which parameter is used to define the number of closest vector candidates considered during HNSW index creation?
You are asked to fetch the top five vectors nearest to a query vector, but only for a specific category of documents. Which query structure should you use?
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')
You are tasked with finding the closest matching sentences across books, where each book has multiple paragraphs and sentences. Which SQL structure should you use?
You need to prioritize accuracy over speed in a similarity search for a dataset of images. Which should you use?
What is the primary function of an embedding model in the context of vector search?
What is the purpose of the VECTOR_DISTANCE function in Oracle Database 23ai similarity search?
Which Oracle Cloud Infrastructure (OCI) service is directly integrated with Select AI?
Which PL/SQL package is primarily used for interacting with Generative AI services in Oracle Database 23ai?
What is a key advantage of using GoldenGate 23ai for managing and distributing vector data for AI applications?
How is the security interaction between Autonomous Database and OCI Generative AI managed in the context of Select AI?