com.simiacryptus.util.Util.add()方法的使用及代码示例

x33g5p2x  于2022-02-01 转载在 其他  
字(3.3k)|赞(0)|评价(0)|浏览(216)

本文整理了Java中com.simiacryptus.util.Util.add()方法的一些代码示例,展示了Util.add()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Util.add()方法的具体详情如下:
包路径:com.simiacryptus.util.Util
类名称:Util
方法名:add

Util.add介绍

[英]Add.
[中]添加

代码示例

代码示例来源:origin: com.simiacryptus/mindseye-java

  1. /**
  2. * Add weights bias key.
  3. *
  4. * @param f the f
  5. * @return the bias key
  6. */
  7. @Nonnull
  8. public BiasLayer addWeights(@Nonnull final DoubleSupplier f) {
  9. Util.add(f, bias);
  10. return this;
  11. }

代码示例来源:origin: com.simiacryptus/mindseye

  1. /**
  2. * Add weights bias layer.
  3. *
  4. * @param f the f
  5. * @return the bias layer
  6. */
  7. @Nonnull
  8. public BiasLayer addWeights(@Nonnull final DoubleSupplier f) {
  9. Util.add(f, bias);
  10. return this;
  11. }

代码示例来源:origin: com.simiacryptus/mindseye

  1. /**
  2. * Add weights convolution layer.
  3. *
  4. * @param f the f
  5. * @return the convolution layer
  6. */
  7. @Nonnull
  8. public SimpleConvolutionLayer addWeights(@Nonnull final DoubleSupplier f) {
  9. Util.add(f, kernel.getData());
  10. return this;
  11. }

代码示例来源:origin: com.simiacryptus/mindseye-java

  1. /**
  2. * Add weights re lu activation key.
  3. *
  4. * @param f the f
  5. * @return the re lu activation key
  6. */
  7. @Nonnull
  8. public ReLuActivationLayer addWeights(@Nonnull final DoubleSupplier f) {
  9. Util.add(f, weights.getData());
  10. return this;
  11. }

代码示例来源:origin: com.simiacryptus/mindseye

  1. /**
  2. * Add weights re lu activation layer.
  3. *
  4. * @param f the f
  5. * @return the re lu activation layer
  6. */
  7. @Nonnull
  8. public ReLuActivationLayer addWeights(@Nonnull final DoubleSupplier f) {
  9. Util.add(f, weights.getData());
  10. return this;
  11. }

代码示例来源:origin: com.simiacryptus/mindseye

  1. /**
  2. * Add weights img band bias layer.
  3. *
  4. * @param f the f
  5. * @return the img band bias layer
  6. */
  7. @Nonnull
  8. public ImgBandBiasLayer addWeights(@Nonnull final DoubleSupplier f) {
  9. Util.add(f, getBias());
  10. return this;
  11. }

代码示例来源:origin: com.simiacryptus/mindseye-cudnn

  1. /**
  2. * Add weights img band bias key.
  3. *
  4. * @param f the f
  5. * @return the img band bias key
  6. */
  7. @Nonnull
  8. public ImgBandBiasLayer addWeights(@Nonnull final DoubleSupplier f) {
  9. Util.add(f, getBias());
  10. return this;
  11. }

代码示例来源:origin: com.simiacryptus/mindseye

  1. /**
  2. * Add weights convolution layer.
  3. *
  4. * @param f the f
  5. * @return the convolution layer
  6. */
  7. @Nonnull
  8. public ConvolutionLayer addWeights(@Nonnull final DoubleSupplier f) {
  9. Util.add(f, kernel.getData());
  10. return this;
  11. }

代码示例来源:origin: com.simiacryptus/mindseye

  1. /**
  2. * Add weights img band scale layer.
  3. *
  4. * @param f the f
  5. * @return the img band scale layer
  6. */
  7. @Nonnull
  8. public ImgBandScaleLayer addWeights(@Nonnull final DoubleSupplier f) {
  9. Util.add(f, getWeights());
  10. return this;
  11. }

代码示例来源:origin: com.simiacryptus/mindseye-cudnn

  1. /**
  2. * Add weights convolution key.
  3. *
  4. * @param f the f
  5. * @return the convolution key
  6. */
  7. @Nonnull
  8. public SimpleConvolutionLayer addWeights(@Nonnull final DoubleSupplier f) {
  9. Util.add(f, kernel.getData());
  10. return this;
  11. }

代码示例来源:origin: com.simiacryptus/mindseye-aparapi

  1. /**
  2. * Add weights convolution key.
  3. *
  4. * @param f the f
  5. * @return the convolution key
  6. */
  7. @Nonnull
  8. public ConvolutionLayer addWeights(@Nonnull final DoubleSupplier f) {
  9. Util.add(f, kernel.getData());
  10. return this;
  11. }

代码示例来源:origin: com.simiacryptus/mindseye-java

  1. /**
  2. * Add weights img band scale key.
  3. *
  4. * @param f the f
  5. * @return the img band scale key
  6. */
  7. @Nonnull
  8. public ImgBandScaleLayer addWeights(@Nonnull final DoubleSupplier f) {
  9. Util.add(f, getWeights());
  10. return this;
  11. }

代码示例来源:origin: com.simiacryptus/mindseye-java

  1. /**
  2. * Add weights img band bias key.
  3. *
  4. * @param f the f
  5. * @return the img band bias key
  6. */
  7. @Nonnull
  8. public ImgBandBiasLayer addWeights(@Nonnull final DoubleSupplier f) {
  9. Util.add(f, getBias());
  10. return this;
  11. }

代码示例来源:origin: com.simiacryptus/mindseye

  1. /**
  2. * Add weights img band bias layer.
  3. *
  4. * @param f the f
  5. * @return the img band bias layer
  6. */
  7. @Nonnull
  8. public ImgBandBiasLayer addWeights(@Nonnull final DoubleSupplier f) {
  9. Util.add(f, getBias());
  10. return this;
  11. }

相关文章