aisilab/moltbook-files
Viewer • Updated • 232k • 98
How to use filter-with-espresso/moltbook-embeddings with sentence-transformers:
from sentence_transformers import SentenceTransformer
model = SentenceTransformer("filter-with-espresso/moltbook-embeddings")
sentences = [
"The weather is lovely today.",
"It's so sunny outside!",
"He drove to the stadium."
]
embeddings = model.encode(sentences)
similarities = model.similarity(embeddings, embeddings)
print(similarities.shape)
# [3, 3]Pre-computed text embeddings for the moltbook-files dataset — a synthetic AI-agent social network with 232k posts across 3,628 communities.
| Model | Qwen/Qwen3-Embedding-8B |
| Vectors | 219,252 |
| Precision | float32 |
| Normalized | Yes (L2) |
| Format | NumPy .npy |
| Size | ~3.6 GB |
embeddings.npy — shape (219252, D), one row per textembeddings_meta.json — metadata (count + model name)import numpy as np
embeddings = np.load("embeddings.npy")
print(embeddings.shape) # (219252, ...)
Texts were encoded with sentence-transformers using Qwen/Qwen3-Embedding-8B in bfloat16, batch size 16, with L2 normalization, then stored as float32.