With reference to following link <https://github.c...
# kotlindl
a
With reference to following link https://github.com/Kotlin/kotlindl/blob/master/docs/loading_trained_model_for_inference.md Hope if anyone has any idea what do i import to be able to use StringLabels
🤔 1
j
stringLabels
is defined in one of the previous tutorials https://github.com/Kotlin/kotlindl/blob/master/docs/create_your_first_nn.md like so:
Copy code
val stringLabels = mapOf(0 to "T-shirt/top",
        1 to "Trousers",
        2 to "Pullover",
        3 to "Dress",
        4 to "Coat",
        5 to "Sandals",
        6 to "Shirt",
        7 to "Sneakers",
        8 to "Bag",
        9 to "Ankle boots"
)
a
thanks @Julia Beliaeva