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: | lainey |
Which function is used to generate vector embeddings within an Oracle database?
What is the purpose of the Vector Pool in Oracle Database 23ai?
What is the function of the COSINE parameter in the SQL query used to retrieve similar vectors?
topk = 3
sql = f"""select payload, vector_distance(vector, :vector, COSINE) as score
from {table_name}
order by score
fetch approximate {topk} rows only"""