Back to datasets
Dataset assetOpen Source CommunityDataset3D Vision
ModelNet10
This repository contains the ModelNet10 3D Vision dataset as a large NumPy array file. The original dataset size is about 2.2 GB, the NumPy file is about 8 GB, and the compressed archive is roughly 32 MB.
Source
github
Created
May 16, 2020
Updated
Jan 11, 2023
Signals
326 views
Availability
Linked source ready
Overview
Dataset description and usage context
ModelNet10‑dataset Overview
Dataset Description
- Original dataset size: Approximately 2.2 Gigabytes
- NumPy file size: Approximately 8 Gigabytes
- Compressed file size: Approximately 32 Megabytes
Dataset Contents
- Contains the NumPy array file of the ModelNet10 3D Vision dataset.
Usage Example
import gzip
import numpy as np
with gzip.open('modelnet10.npy.gz', 'rb') as f:
arr = np.load(f)
print(type(arr), arr.shape)
Output:
<class 'numpy.ndarray'> (3992, 1, 64, 64, 64)
Visualization Example:
import matplotlib.pyplot as plt
fig = plt.figure()
ax = fig.gca(projection='3d')
ax.voxels(arr[78][0], facecolors='red')
plt.show()
Resulting Image:

Dataset Generation Script
- A script for converting the original OFF files into the final format is provided in the
scriptsfolder.
Need downstream help?
Pair the dataset with AI analysis and content workflows.
Once the source passes your review, move straight into summarization, transformation, report drafting, or presentation generation with the JuheAI toolchain.