AttemptedModelDescription

data class AttemptedModelDescription(    val name: String? = null,     val mae: Double? = null,     val key: String? = null,     val hash: String? = null,     val id: Int? = null,     val type: String? = null,     val url: String? = null)

Model description received from the API Server (if available)

Constructors

Link copied to clipboard
fun AttemptedModelDescription(    name: String? = null,     mae: Double? = null,     key: String? = null,     hash: String? = null,     id: Int? = null,     type: String? = null,     url: String? = null)

Properties

Link copied to clipboard
val hash: String? = null

Hash of the model contents.

Link copied to clipboard
val id: Int? = null

ID of the model.

Link copied to clipboard
val key: String? = null

Server key for this model.

Link copied to clipboard
val mae: Double? = null

MAE metric of the neural network.

Link copied to clipboard
val name: String? = null

Individual name of the model.

Link copied to clipboard
val type: String? = null

Type of the model.

Link copied to clipboard
val url: String? = null

Download URL for the model file.