ModelCollection

@Serializable
data class ModelCollection(val models: List<Model>)

Represents a collection of models, encapsulating them in a list structure for easy management and access.

Constructors

Link copied to clipboard
constructor(models: List<Model>)

Properties

Link copied to clipboard
val models: List<Model>

A list of Model objects, each representing a distinct model within the collection. This allows for grouping multiple models together for operations such as batch processing or collective analysis.