# mnist-cluttered **Repository Path**: mirrors_deepmind/mnist-cluttered ## Basic Information - **Project Name**: mnist-cluttered - **Description**: Cluttered MNIST Dataset - **Primary Language**: Unknown - **License**: BSD-3-Clause - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-02-27 - **Last Updated**: 2025-09-06 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README Cluttered MNIST Dataset ======================= A setup script will download MNIST and produce `mnist/*.t7` files: luajit download_mnist.lua Example usage: local mnist_cluttered = require 'mnist_cluttered' -- The observation will have size 1x100x100 with 8 distractors. local dataConfig = {megapatch_w=100, num_dist=8} local dataInfo = mnist_cluttered.createData(dataConfig) local observation, target = unpack(dataInfo.nextExample())