Package org.jetbrains.kotlinx.dl.impl.dataset

Types

Coco
Link copied to clipboard
common
enum Coco : Enum<Coco>

This enum represents a types of COCO dataset labels. Some models are trained on the COCO dataset with 80 classes (2014), and some models are trained on the COCO dataset with 91 classes (2017). Also, sometimes labels are indexed from 1, and sometimes from 0.

Imagenet
Link copied to clipboard
common
enum Imagenet : Enum<Imagenet>

Type of Imagenet dataset labels. Some models are trained on the vanilla ImageNet dataset, which contains 1000 classes, but some models also output additional 'background' class.

Properties

cocoCategories2014
Link copied to clipboard
common
val cocoCategories2014: Map<Int, String>

80 object categories in COCO dataset.

cocoCategories2017
Link copied to clipboard
common
val cocoCategories2017: Map<Int, String>

80 object categories in COCO dataset.

imagenetLabels
Link copied to clipboard
common
val imagenetLabels: Map<Int, String>

Map of Imagenet labels.