use of org.nd4j.linalg.api.rng.distribution.impl.OrthogonalDistribution in project nd4j by deeplearning4j.
the class RandomTests method testOrthogonalDistribution1.
@Test
public void testOrthogonalDistribution1() {
val dist = new OrthogonalDistribution(1.0);
val array = dist.sample(new int[] { 6, 9 });
log.info("Array: {}", array);
}
Aggregations