Package-level declarations

Types

Link copied to clipboard

Common entry points for obtaining Fashion-MNIST datasets across platforms.

Link copied to clipboard

Constants for the Fashion-MNIST dataset.

Link copied to clipboard
@Serializable
data class FashionMNISTDataset(val images: List<FashionMNISTImage>, executionContext: ExecutionContext = DefaultDataExecutionContext()) : Dataset<FashionMNISTImage, Float>

Fashion-MNIST dataset implementation using Dataset/DataBatch API.

Link copied to clipboard
@Serializable
data class FashionMNISTImage(val image: ByteArray, val label: Byte)

Represents a single Fashion-MNIST image with its label.

Link copied to clipboard

Interface for the Fashion-MNIST loader.

Link copied to clipboard

Android implementation of the Fashion-MNIST loader.

Link copied to clipboard

Abstract base class for Fashion-MNIST loaders that implements common functionality.

Link copied to clipboard
data class FashionMNISTLoaderConfig(val cacheDir: String = "fashion-mnist-data", val useCache: Boolean = true)

Configuration for the Fashion-MNIST loader.

Link copied to clipboard

iOS implementation of the Fashion-MNIST loader.

Link copied to clipboard

JS (browser) implementation of the Fashion-MNIST loader.

Link copied to clipboard

JVM implementation of the Fashion-MNIST loader.

Link copied to clipboard

Linux implementation of the Fashion-MNIST loader. Minimal placeholder to satisfy expect/actual.

Link copied to clipboard

macOS implementation of the Fashion-MNIST loader. Minimal placeholder to satisfy expect/actual; avoids direct FS and HTTP until fully implemented.

Link copied to clipboard

WASM JS implementation of the Fashion-MNIST loader.

Functions

Link copied to clipboard

Android implementation of the Fashion-MNIST loader factory.

Expect/actual factory function implemented per platform that returns the concrete FashionMNISTLoader implementation.

iOS implementation of the Fashion-MNIST loader factory.

JS implementation of the Fashion-MNIST loader factory.

JVM implementation of the Fashion-MNIST loader factory.

Linux implementation of the Fashion-MNIST loader factory.

macOS implementation of the Fashion-MNIST loader factory.

WASM JS implementation of the Fashion-MNIST loader factory.