All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ai.djl.inference.streaming.StreamingBlock Maven / Gradle / Ivy

There is a newer version: 0.30.0
Show newest version
/*
 * Copyright 2023 Amazon.com, Inc. or its affiliates. All Rights Reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance
 * with the License. A copy of the License is located at
 *
 * http://aws.amazon.com/apache2.0/
 *
 * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES
 * OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
 * and limitations under the License.
 */
package ai.djl.inference.streaming;

import ai.djl.ndarray.NDList;
import ai.djl.nn.Block;
import ai.djl.training.ParameterStore;
import ai.djl.util.PairList;

import java.util.Iterator;
import java.util.Spliterator;
import java.util.Spliterators;
import java.util.stream.Stream;
import java.util.stream.StreamSupport;

/**
 * A {@link Block} possessing the additional streaming forward capabilities used by {@link
 * ai.djl.inference.Predictor#streamingPredict(Object)}.
 */
public interface StreamingBlock extends Block {

    /**
     * Applies the operating function of the block once, but returns the result in chunks. This
     * method should only be called on blocks that are initialized.
     *
     * @param parameterStore the parameter store
     * @param inputs the input NDList
     * @param training true for a training forward pass (turn on dropout and layerNorm)
     * @return the output of the forward pass
     */
    default Stream forwardStream(
            ParameterStore parameterStore, NDList inputs, boolean training) {
        return forwardStream(parameterStore, inputs, training, null);
    }

    /**
     * Applies the operating function of the block once, but returns the result in chunks. This
     * method should only be called on blocks that are initialized.
     *
     * @param parameterStore the parameter store
     * @param inputs the input NDList
     * @param training true for a training forward pass (turn on dropout and layerNorm)
     * @param params optional parameters
     * @return the output of the forward pass
     */
    default Stream forwardStream(
            ParameterStore parameterStore,
            NDList inputs,
            boolean training,
            PairList params) {
        Iterator itr = forwardStreamIter(parameterStore, inputs, training, params);
        Spliterator spitr = Spliterators.spliteratorUnknownSize(itr, Spliterator.NONNULL);
        return StreamSupport.stream(spitr, false);
    }

    /**
     * Applies the operating function of the block once, but returns the result in chunks. This
     * method should only be called on blocks that are initialized.
     *
     * @param parameterStore the parameter store
     * @param inputs the input NDList
     * @param training true for a training forward pass (turn on dropout and layerNorm)
     * @param params optional parameters
     * @return the output of the forward pass
     */
    Iterator forwardStreamIter(
            ParameterStore parameterStore,
            NDList inputs,
            boolean training,
            PairList params);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy