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

org.nd4j.linalg.transformation.LogTransform Maven / Gradle / Ivy

There is a newer version: 1.0.0-M2.1
Show newest version
package org.nd4j.linalg.transformation;

import org.nd4j.linalg.api.ndarray.INDArray;
import org.nd4j.linalg.ops.transforms.Transforms;


public class LogTransform implements MatrixTransform {

	/**
	 * 
	 */
	private static final long serialVersionUID = 8144081928477158772L;

	@Override
	public INDArray apply(INDArray input) {
		return Transforms.log(input.dup());
	}

	

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy