com.simiacryptus.mindseye.layers.java.CrossProductLayer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mindseye-java Show documentation
Show all versions of mindseye-java Show documentation
Pure Java Neural Networks Components
/*
* Copyright (c) 2019 by Andrew Charneski.
*
* The author licenses this file to you under the
* Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance
* with the License. You may obtain a copy
* of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License 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 com.simiacryptus.mindseye.layers.java;
import com.google.gson.JsonObject;
import com.simiacryptus.mindseye.lang.*;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
import java.util.Arrays;
import java.util.List;
import java.util.Map;
import java.util.UUID;
import java.util.stream.IntStream;
/**
* The type Cross product key.
*/
@SuppressWarnings("serial")
public class CrossProductLayer extends LayerBase {
/**
* Instantiates a new Cross product key.
*/
public CrossProductLayer() {
}
/**
* Instantiates a new Cross product key.
*
* @param id the id
*/
protected CrossProductLayer(@Nonnull final JsonObject id) {
super(id);
}
/**
* From json cross product key.
*
* @param json the json
* @param rs the rs
* @return the cross product key
*/
public static CrossProductLayer fromJson(@Nonnull final JsonObject json, Map rs) {
return new CrossProductLayer(json);
}
/**
* Index int.
*
* @param x the x
* @param y the y
* @param max the max
* @return the int
*/
public static int index(final int x, final int y, final int max) {
return max * (max - 1) / 2 - (max - x) * (max - x - 1) / 2 + y - x - 1;
}
@Nonnull
@Override
public Result eval(@Nonnull final Result... inObj) {
assert 1 == inObj.length;
final Result in = inObj[0];
TensorList indata = in.getData();
Arrays.stream(inObj).forEach(nnResult -> nnResult.addRef());
indata.addRef();
return new Result(TensorArray.wrap(indata.stream().parallel().map(tensor -> {
final int inputDim = tensor.length();
final int outputDim = (inputDim * inputDim - inputDim) / 2;
@Nonnull final Tensor result = new Tensor(outputDim);
@Nullable final double[] inputData = tensor.getData();
@Nullable final double[] resultData = result.getData();
IntStream.range(0, inputDim).forEach(x -> {
IntStream.range(x + 1, inputDim).forEach(y -> {
resultData[CrossProductLayer.index(x, y, inputDim)] = inputData[x] * inputData[y];
});
});
tensor.freeRef();
return result;
}).toArray(i -> new Tensor[i])), (@Nonnull final DeltaSet buffer, @Nonnull final TensorList delta) -> {
if (in.isAlive()) {
assert delta.length() == delta.length();
@Nonnull TensorArray tensorArray = TensorArray.wrap(IntStream.range(0, delta.length()).parallel().mapToObj(batchIndex -> {
@Nullable final Tensor deltaTensor = delta.get(batchIndex);
final int outputDim = deltaTensor.length();
final int inputDim = (1 + (int) Math.sqrt(1 + 8 * outputDim)) / 2;
@Nonnull final Tensor passback = new Tensor(inputDim);
@Nullable final double[] passbackData = passback.getData();
@Nullable final double[] tensorData = deltaTensor.getData();
Tensor inputTensor = indata.get(batchIndex);
@Nullable final double[] inputData = inputTensor.getData();
IntStream.range(0, inputDim).forEach(x -> {
IntStream.range(x + 1, inputDim).forEach(y -> {
passbackData[x] += tensorData[CrossProductLayer.index(x, y, inputDim)] * inputData[y];
passbackData[y] += tensorData[CrossProductLayer.index(x, y, inputDim)] * inputData[x];
});
});
deltaTensor.freeRef();
inputTensor.freeRef();
return passback;
}).toArray(i -> new Tensor[i]));
in.accumulate(buffer, tensorArray);
}
delta.freeRef();
}) {
@Override
protected void _free() {
indata.freeRef();
Arrays.stream(inObj).forEach(nnResult -> nnResult.freeRef());
}
@Override
public boolean isAlive() {
for (@Nonnull final Result element : inObj)
if (element.isAlive()) {
return true;
}
return false;
}
};
}
@Nonnull
@Override
public JsonObject getJson(Map resources, DataSerializer dataSerializer) {
return super.getJsonStub();
}
@Nonnull
@Override
public List state() {
return Arrays.asList();
}
}