<!--
{
  "availability" : [
    "iOS: 17.0.0 -",
    "iPadOS: 17.0.0 -",
    "macCatalyst: 17.0.0 -",
    "macOS: 14.0.0 -",
    "tvOS: 17.0.0 -",
    "visionOS: 1.0.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "CreateMLComponents",
  "identifier" : "/documentation/CreateMLComponents/FullyConnectedNetworkMultiLabelClassifier/fitted(to:validateOn:eventHandler:)",
  "metadataVersion" : "0.1.0",
  "role" : "Instance Method",
  "symbol" : {
    "kind" : "Instance Method",
    "modules" : [
      "Create ML Components"
    ],
    "preciseIdentifier" : "s:18CreateMLComponents41FullyConnectedNetworkMultiLabelClassifierV6fitted2to10validateOn12eventHandlerAA0cdefgH5ModelVyxq_Gqd___qd_0_yAA5EventVYbcSgtYaKSTRd__STRd_0_AA16AnnotatedFeatureVy6CoreML13MLShapedArrayVyxGShyq_GG7ElementRtd__AuVRtd_0_r0_lF"
  },
  "title" : "fitted(to:validateOn:eventHandler:)"
}
-->

# fitted(to:validateOn:eventHandler:)

Fits a fully-connected network multi-label classifier model to a sequence of examples.

```
func fitted<Input, Validation>(to input: Input, validateOn validation: Validation, eventHandler: EventHandler? = nil) async throws -> FullyConnectedNetworkMultiLabelClassifierModel<Scalar, Label> where Input : Sequence, Validation : Sequence, Input.Element == AnnotatedFeature<MLShapedArray<Scalar>, Set<Label>>, Validation.Element == AnnotatedFeature<MLShapedArray<Scalar>, Set<Label>>
```

## Parameters

`input`

A sequence of examples used for fitting the classifier.

`validation`

A sequence of examples used for validating the fitted multi-label classifier.

`eventHandler`

An event handler.

## Return Value

The fitted fully-connected network multi-label classifier model.

## Discussion

The training process partitions the input into random batches according to the batch size configuration
parameter. Training stops when the validation loss stops improving or when the maximum number of iterations
is reached.

---

Copyright &copy; 2026 Apple Inc. All rights reserved. | [Terms of Use](https://www.apple.com/legal/internet-services/terms/site.html) | [Privacy Policy](https://www.apple.com/privacy/privacy-policy)