Datasets:
id stringlengths 36 36 | title stringlengths 1 994 | artist stringlengths 1 648 | embedding list |
|---|---|---|---|
0000172d-6e43-4d7d-8647-da718593a97a | Bienvenue chez moi ! | Anouk Mathieu | [
0.005863189697265625,
0.044036865234375,
0.01313018798828125,
-0.00635528564453125,
-0.030517578125,
-0.00833892822265625,
0.00516510009765625,
0.0106048583984375,
-0.0170440673828125,
-0.0057830810546875,
0.008514404296875,
0.006793975830078125,
0.0083160400390625,
0.035125732421875,
-0... |
000017d8-7e5f-4946-bcdd-5b793454af8b | Violin Concerto | Beethoven; Nigel Kennedy, Sinfonieorchester des NDR, Klaus Tennstedt | [
-0.0011692047119140625,
0.047821044921875,
0.0108795166015625,
0.034454345703125,
-0.036285400390625,
-0.0007343292236328125,
0.0008740425109863281,
0.00450897216796875,
0.02850341796875,
-0.0321044921875,
0.0360107421875,
0.00519561767578125,
0.0038738250732421875,
-0.0144195556640625,
... |
00001bad-2529-4642-adce-3bf614f890bf | Best Of | Mory Kanté | [
0.00800323486328125,
0.0220947265625,
0.005474090576171875,
-0.0113372802734375,
-0.0299072265625,
-0.0038013458251953125,
0.012664794921875,
0.0019378662109375,
0.0057525634765625,
-0.0275115966796875,
0.0022296905517578125,
0.0247344970703125,
0.013092041015625,
-0.0188140869140625,
0.... |
00001e14-fc47-49b1-8efa-5958e4090161 | XX3XX | ISEMG | [
0.0247344970703125,
0.0191497802734375,
0.020538330078125,
-0.028106689453125,
0.0148773193359375,
0.0225372314453125,
0.00907135009765625,
0.0237884521484375,
-0.0228271484375,
-0.007419586181640625,
0.034820556640625,
0.0122833251953125,
0.0082550048828125,
-0.019775390625,
-0.02224731... |
00001e72-9d93-4a6a-a45f-cd988f5c161c | The New Flesh | Red Vox | [
-0.0152435302734375,
-0.01239013671875,
-0.0034847259521484375,
-0.01306915283203125,
-0.015777587890625,
-0.00015020370483398438,
-0.0173187255859375,
0.02423095703125,
-0.0171661376953125,
-0.000499725341796875,
-0.0281219482421875,
-0.01172637939453125,
-0.006977081298828125,
0.01763916... |
00002481-f6f7-492a-a2d6-6e61ddd1da85 | Okuribito / So Special | AI | [
-0.006641387939453125,
0.01995849609375,
0.00025081634521484375,
0.0079498291015625,
-0.0029811859130859375,
0.0266265869140625,
0.00263214111328125,
0.01751708984375,
0.01110076904296875,
-0.02972412109375,
0.0020999908447265625,
-0.02459716796875,
0.006195068359375,
-0.022674560546875,
... |
000026af-665c-49ea-9945-a6404b0709f1 | SAKURA FUBUKI | ちゃみぃ。 | [0.0279693603515625,-0.0018110275268554688,0.0102691650390625,0.016571044921875,-0.00051307678222656(...TRUNCATED) |
00002b59-746f-4dc4-8d44-0a7410de3e92 | Live Era ’87–’93 Sampler | Guns N’ Roses | [0.0003368854522705078,0.040863037109375,0.0011444091796875,-0.01244354248046875,-0.006988525390625,(...TRUNCATED) |
00002fa1-23cb-45e7-b059-b458ebcd6a00 | Jazz History, Volume 4: The New Era 1969-Now | Various Artists | [0.021697998046875,0.0406494140625,0.035552978515625,0.01053619384765625,0.00008785724639892578,-0.0(...TRUNCATED) |
00002fb4-7d2a-449c-aaa1-4724325ee269 | From Elvis in Memphis | Elvis Presley | [0.01471710205078125,0.037017822265625,-0.012542724609375,0.0030651092529296875,-0.038360595703125,-(...TRUNCATED) |
End of preview. Expand in Data Studio
Music Cover CLIP Embeddings
CLIP ViT-L/14 (openai/clip-vit-large-patch14) embeddings for ~3.5M music
album covers.
Each row contains a concatenated, L2-normalized embedding combining the cover
image and the text "{title} by: {artist}":
- Image is encoded with CLIP's image tower → 768-dim, L2-normalized.
- Text is encoded with CLIP's text tower → 768-dim, L2-normalized.
- The two are concatenated → 1536-dim, then L2-normalized again.
Because the final vector is unit-normalized, cosine similarity equals the dot product.
Schema
| column | type | notes |
|---|---|---|
id |
string | MusicBrainz release-group UUID |
title |
string | Album title |
artist |
string | Artist name |
embedding |
fixed-size list | length 1536 |
Usage
from datasets import load_dataset
import numpy as np
ds = load_dataset("dyslexi/Music_covers", split="train")
emb = np.asarray(ds[0]["embedding"], dtype=np.float32) # shape (1536,)
# nearest neighbours of row 0 by cosine similarity
all_emb = np.asarray(ds["embedding"], dtype=np.float32)
scores = all_emb @ emb
top = np.argsort(-scores)[:5]
for i in top:
print(ds[int(i)]["title"], "—", ds[int(i)]["artist"])
- Downloads last month
- 86