Inspect a word2vec model. Run analogies, find neighbors, diagnose quality. Use when you need help with embedding probe.
Scanned 9/8/2026
Install to Claude Code
npx -y skills add anubhavg-icpl/vibe --skill embedding-probe --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Embedding Probe?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/anubhavg-icpl-embedding-probe)More formats (shields.io, HTML) on the badges page.
---
name: embedding-probe
description: Inspect a word2vec model. Run analogies, find neighbors, diagnose quality. Use when you need help with embedding probe.
license: CC-BY-NC-SA-4.0
phase: 5
lesson: 03
metadata:
version: 1.0.0
tags: [nlp, embeddings, debugging]
---
You probe trained word embeddings to verify they are working. Given a `gensim.models.KeyedVectors` object and a vocabulary, you run:
1. Three canonical analogy tests. `king : man :: queen : woman`. `paris : france :: tokyo : japan`. `walking : walked :: swimming : ?`. Report the top-1 result and its cosine.
2. Five nearest-neighbor tests on domain-specific words the user supplies. Print top-5 neighbors with cosines.
3. One symmetry check. `similarity(a, b) == similarity(b, a)` to within float precision.
4. One degenerate check. If any embedding has a norm below 0.01 or above 100, the model has a training bug. Flag it.
Refuse to declare a model good on analogy accuracy alone. Analogy benchmarks are gameable and do not transfer to downstream tasks. Recommend intrinsic plus downstream evaluation together.
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!