Skip to content
Novus Examples
npy1.6 KB

Text Embeddings — 24×16 matrix (NumPy .npy)

The embeddings as a raw NumPy array — a 24×16 float32 matrix in .npy format, loadable with numpy.load. The binary twin of the JSON and Parquet files, for testing tensor and matrix loaders.

Preview — schema + first 8 rowsnpy
dim_00dim_01dim_02dim_03dim_04
-0.07038400322198868-0.091609999537467960.243762001395225520.21044300496578217-0.3516930043697357
-0.0295439995825290680.259068012237548830.165883004665374760.43884000182151794-0.1419380009174347
-0.24579299986362457-0.40040600299835205-0.05987099930644035-0.196639001369476320.0441880002617836
0.25331598520278930.082704000174999240.0461140014231205-0.3194110095500946-0.06899599730968475
0.123071998357772830.081358000636100770.0380299985408782960.2000340074300766-0.04078400135040283
-0.07104899734258652-0.101324997842311860.09806299954652786-0.45681801438331604-0.16166099905967712
-0.065880000591278080.143170997500419620.34562298655509950.20294399559497833-0.27621299028396606
0.020137999206781387-0.09906200319528580.07678800076246262-0.487228989601135250.2195259928703308
Decoded NumPy array — first 8 of 24 rows, first 5 of 16 dims (float32).

Specifications

Shape
24x16
Dtype
float32
Format
NumPy .npy v1.0
Seed
1729

What is a .npy file?

NPY is NumPy's native binary format for a single array. A short header records the dtype, shape, and memory order, followed by the raw array bytes, so an array round-trips exactly without any text parsing. It is the standard way to persist embeddings, tensors, and numeric matrices in the Python data stack.

How to use this file

Use an example .npy to test array loaders (numpy.load), tensor and embedding pipelines, and converters between .npy, JSON, and columnar formats like Parquet.

Generated by generation/ai_datasets.py. Free for any use, no attribution required — license.