FAQ: Word Embeddings - Review

This community-built FAQ covers the “Review” exercise from the lesson “Word Embeddings”.

Paths and Courses
This exercise can be found in the following Codecademy content:

Natural Language Processing

FAQs on the exercise Review

There are currently no frequently asked questions associated with this exercise – that’s where you come in! You can contribute to this section by offering your own questions, answers, or clarifications on this exercise. Ask or answer a question by clicking reply (reply) below.

If you’ve had an “aha” moment about the concepts, formatting, syntax, or anything else with this exercise, consider sharing those insights! Teaching others and answering their questions is one of the best ways to learn and stay sharp.

Join the Discussion. Help a fellow learner on their journey.

Ask or answer a question about this exercise by clicking reply (reply) below!
You can also find further discussion and get answers to your questions over in Language Help.

Agree with a comment or answer? Like (like) to up-vote the contribution!

Need broader help or resources? Head to Language Help and Tips and Resources. If you are wanting feedback or inspiration for a project, check out Projects.

Looking for motivation to keep learning? Join our wider discussions in Community

Learn more about how to use this guide.

Found a bug? Report it online, or post in Bug Reporting

Have a question about your account or billing? Reach out to our customer support team!

None of the above? Find out where to ask other questions here!

I run code on VS Code the result is different than running here in codecademy.

  • codecademy result :
    0.22602969408035278 (sponge_vec, startfish_vec)
    0.5690327882766724 (sponge_vec, squid_vec)
    0.27446436882019043 (starfish_vec, squid_vec)

  • VS Code result :
    0.8279428035020828 (sponge_vec, starfish_vec)
    0.6669286489486694 (sponge_vec, squid_vec)
    0.8470767140388489 (starfish_vec, squid_vec)

the code is like this

import spacy
from scipy.spatial.distance import cosine

# load word embadding model
nlp = spacy.load('en_core_web_sm')

# define word embadding vectors
sponge_vec = nlp('sponge').vector
starfish_vec = nlp('starfish').vector
squid_vec = nlp('squid').vector

# compare vector with cosine distance
dist_sponge_star = cosine(sponge_vec, starfish_vec)
dist_sponge_squid = cosine(sponge_vec, squid_vec)
dist_star_squid = cosine(starfish_vec, squid_vec)

print(dist_sponge_star)
print(dist_sponge_squid)
print(dist_star_squid)
the code differences
nlp = spacy.load('en_core_web_sm') - VS Code
nlp = spacy.load('en') - codecademy

because I can’t load spacy.load(‘en’) in VS code.

why the results are different?