Package-level declarations

Types

Link copied to clipboard
object CIFAR10

Common entry points for obtaining CIFAR-10 datasets across platforms.

Link copied to clipboard

Constants for the CIFAR-10 dataset.

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

CIFAR-10 dataset implementation using Dataset/DataBatch API.

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

Represents a single CIFAR-10 image with its label.

Link copied to clipboard
interface CIFAR10Loader

Interface for the CIFAR-10 loader.

Link copied to clipboard

Android implementation of the CIFAR-10 loader.

Link copied to clipboard

Abstract base class for CIFAR-10 loaders that implements common functionality.

Link copied to clipboard
data class CIFAR10LoaderConfig(val cacheDir: String = "cifar10-data", val useCache: Boolean = true)

Configuration for the CIFAR-10 loader.

Link copied to clipboard

iOS implementation of the CIFAR-10 loader. Placeholder implementation - tar.gz extraction not yet implemented for iOS.

Link copied to clipboard

JS (browser) implementation of the CIFAR-10 loader. Placeholder implementation - tar.gz extraction not yet implemented for JS.

Link copied to clipboard

JVM implementation of the CIFAR-10 loader.

Link copied to clipboard

Linux implementation of the CIFAR-10 loader. Placeholder implementation.

Link copied to clipboard

macOS implementation of the CIFAR-10 loader. Placeholder implementation.

Link copied to clipboard

WASM JS implementation of the CIFAR-10 loader. Placeholder implementation.

Functions

Link copied to clipboard

Android implementation of the CIFAR-10 loader factory.

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

iOS implementation of the CIFAR-10 loader factory.

JS implementation of the CIFAR-10 loader factory.

JVM implementation of the CIFAR-10 loader factory.

Linux implementation of the CIFAR-10 loader factory.

macOS implementation of the CIFAR-10 loader factory.

WASM JS implementation of the CIFAR-10 loader factory.