aws-predictions-tensorflow/src/main/java/com/amplifyframework/predictions/tensorflow/asset/TextClassificationDictionary.java [173:180]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public TextClassificationDictionary onLoaded(
            Consumer<Map<String, Integer>> onLoaded,
            Consumer<PredictionsException> onLoadError
    ) {
        this.onLoaded = onLoaded;
        this.onLoadError = onLoadError;
        return this;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



aws-predictions-tensorflow/src/main/java/com/amplifyframework/predictions/tensorflow/asset/TextClassificationLabels.java [132:139]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public TextClassificationLabels onLoaded(
            Consumer<List<String>> onLoaded,
            Consumer<PredictionsException> onLoadError
    ) {
        this.onLoaded = onLoaded;
        this.onLoadError = onLoadError;
        return this;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



