Dataford
Interview QuestionsInterview GuidesExperiencesMock InterviewsPricing
Get started
Cosine Similarity for Embeddings
00:00
5 left

Cosine Similarity for Embeddings

EasyPython

Problem

Scotiabank may compare embedding vectors to rank semantically related content, such as matching a customer query with relevant Scotia mobile app help content. Implement cosine similarity for two high-dimensional vectors.

Given two equal-length lists of numbers, compute:

similarity = (A · B) / (||A|| × ||B||)

Return a floating-point value in the range [-1.0, 1.0]. If either vector has zero magnitude, return 0.0, because cosine similarity is undefined for a zero vector.

Formal Specification

Implement cosine_similarity(a, b), where a and b are non-empty lists of integers or floating-point values with the same length. Return the cosine similarity as a float. Do not modify either input list.

Constraints

  • 1 <= len(a) = len(b) <= 100000
  • -10^6 <= a[i], b[i] <= 10^6
  • Inputs contain only finite numeric values
  • Input vectors must not be modified

Function Signature

def cosine_similarity(a, b):
Interviewer

Your question is Cosine Similarity for Embeddings. Start with the requirements in the Question tab.

Run and submit as often as you like. When you're ready, talk me through your approach or go straight to the code.

You need to log in / sign up to run or submit.
CodePython 3
You need to log in / sign up to run or submit.Ln 2
Run your code to see test output here.