Views
No views yet
| Metryka | v1 | v2 | Zmiana |
|---|---|---|---|
| Pary podobne | 0.7762 | 0.8229 | +0.047 |
| Pary różne | 0.3309 | 0.2982 | -0.033 |
| Gap (separacja) | 0.4453 | 0.5247 | +0.079 |
1from sentence_transformers import SentenceTransformer
2
3model = SentenceTransformer("Kelnux/seo-embedding-uczciweseo")
4
5# Generuj embeddingi
6sentences = ["technical SEO audit", "audyt techniczny strony"]
7embeddings = model.encode(sentences)
8
9# Oblicz podobieństwo
10from sklearn.metrics.pairwise import cosine_similarity
11similarity = cosine_similarity([embeddings[0]], [embeddings[1]])[0][0]
12print(f"Podobieństwo: {similarity:.4f}")| Fraza 1 | Fraza 2 | Podobieństwo |
|---|---|---|
| technical SEO audit steps | crawl errors in Google Search Console | 0.79 |
| structured data | dane strukturalne schema.org | 0.93 |
| organic traffic | ruch organiczny | 0.91 |
| keyword difficulty | long-tail keywords | 0.88 |
1@misc{seo-embedding-uczciweseo,
2 title={SEO Embedding Model for UczciweSEO.pl},
3 year={2025},
4 publisher={HuggingFace},
5 url={https://huggingface.co/Kelnux/seo-embedding-uczciweseo}
6}