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

com.yahoo.tensor.functions.L1Normalize Maven / Gradle / Ivy

// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.tensor.functions;

import com.yahoo.tensor.evaluation.Name;

import java.util.List;
import java.util.Objects;

/**
 * @author bratseth
 */
public class L1Normalize extends CompositeTensorFunction {

    private final TensorFunction argument;
    private final String dimension;

    public L1Normalize(TensorFunction argument, String dimension) {
        this.argument = argument;
        this.dimension = dimension;
    }

    @Override
    public List> arguments() { return List.of(argument); }

    @Override
    public TensorFunction withArguments(List> arguments) {
        if ( arguments.size() != 1)
            throw new IllegalArgumentException("L1Normalize must have 1 argument, got " + arguments.size());
        return new L1Normalize<>(arguments.get(0), dimension);
    }

    @Override
    public PrimitiveTensorFunction toPrimitive() {
        TensorFunction primitiveArgument = argument.toPrimitive();
        // join(x, reduce(x, "avg", "dimension"), f(x,y) (x / y))
        return new Join<>(primitiveArgument,
                          new Reduce<>(primitiveArgument, Reduce.Aggregator.sum, dimension),
                          ScalarFunctions.divide());
    }

    @Override
    public String toString(ToStringContext context) {
        return "l1_normalize(" + argument.toString(context) + ", " + context.resolveBinding(dimension) + ")";
    }

    @Override
    public int hashCode() { return Objects.hash("l1_normalize", argument, dimension); }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy