- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中org.deeplearning4j.nn.conf.layers.ZeroPaddingLayer
类的一些代码示例,展示了ZeroPaddingLayer
类的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZeroPaddingLayer
类的具体详情如下:
包路径:org.deeplearning4j.nn.conf.layers.ZeroPaddingLayer
类名称:ZeroPaddingLayer
[英]Zero padding layer for convolutional neural networks. Allows padding to be done separately for top/bottom/left/right
[中]卷积神经网络的零填充层。允许上/下/左/右单独填充
代码示例来源:origin: Waikato/wekaDeeplearning4j
@Override
public void initializeBackend() {
this.backend = new org.deeplearning4j.nn.conf.layers.ZeroPaddingLayer();
}
}
代码示例来源:origin: org.deeplearning4j/deeplearning4j-nn
@Override
public InputPreProcessor getPreProcessorForInputType(InputType inputType) {
if (inputType == null) {
throw new IllegalStateException("Invalid input for ZeroPaddingLayer layer (layer name=\"" + getLayerName()
+ "\"): input is null");
}
return InputTypeUtil.getPreProcessorForInputTypeCnnLayers(inputType, getLayerName());
}
代码示例来源:origin: Waikato/wekaDeeplearning4j
public void setPadding(int[] padding) {
backend.setPadding(padding);
}
代码示例来源:origin: Waikato/wekaDeeplearning4j
@OptionMetadata(
displayName = "number of columns in padding",
description = "The number of columns in the padding (default = 0).",
commandLineParamName = "paddingColumns",
commandLineParamSynopsis = "-paddingColumns <int>",
displayOrder = 9
)
public int getPaddingColumns() {
return backend.getPadding()[1];
}
代码示例来源:origin: org.deeplearning4j/deeplearning4j-modelimport
/**
* Get layer output type.
*
* @param inputType Array of InputTypes
* @return output type as InputType
* @throws InvalidKerasConfigurationException
*/
@Override
public InputType getOutputType(InputType... inputType) throws InvalidKerasConfigurationException {
if (inputType.length > 1)
throw new InvalidKerasConfigurationException(
"Keras ZeroPadding layer accepts only one input (received " + inputType.length + ")");
return this.getZeroPaddingLayer().getOutputType(-1, inputType[0]);
}
代码示例来源:origin: org.deeplearning4j/deeplearning4j-nn
@Override
public org.deeplearning4j.nn.api.Layer instantiate(NeuralNetConfiguration conf,
Collection<IterationListener> iterationListeners, int layerIndex, INDArray layerParamsView,
boolean initializeParams) {
org.deeplearning4j.nn.layers.convolution.ZeroPaddingLayer ret =
new org.deeplearning4j.nn.layers.convolution.ZeroPaddingLayer(conf);
ret.setListeners(iterationListeners);
ret.setIndex(layerIndex);
Map<String, INDArray> paramTable = initializer().init(conf, layerParamsView, initializeParams);
ret.setParamTable(paramTable);
ret.setConf(conf);
return ret;
}
代码示例来源:origin: Waikato/wekaDeeplearning4j
@OptionMetadata(
displayName = "number of rows in padding",
description = "The number of rows in the padding (default = 0).",
commandLineParamName = "paddingRows",
commandLineParamSynopsis = "-paddingRows <int>",
displayOrder = 8
)
public int getPaddingRows() {
return backend.getPadding()[0];
}
代码示例来源:origin: org.deeplearning4j/deeplearning4j-nn
@Override
public LayerMemoryReport getMemoryReport(InputType inputType) {
InputType outputType = getOutputType(-1, inputType);
return new LayerMemoryReport.Builder(layerName, ZeroPaddingLayer.class, inputType, outputType)
.standardMemory(0, 0) //No params
//Inference and training is same - just output activations, no working memory in addition to that
.workingMemory(0, 0, MemoryReport.CACHE_MODE_ALL_ZEROS, MemoryReport.CACHE_MODE_ALL_ZEROS)
.cacheMemory(MemoryReport.CACHE_MODE_ALL_ZEROS, MemoryReport.CACHE_MODE_ALL_ZEROS) //No caching
.build();
}
代码示例来源:origin: Waikato/wekaDeeplearning4j
@ProgrammaticProperty
public int[] getPadding() {
return backend.getPadding();
}
代码示例来源:origin: org.deeplearning4j/deeplearning4j-nn
@Override
@SuppressWarnings("unchecked")
public ZeroPaddingLayer build() {
for (int p : padding) {
if (p < 0) {
throw new IllegalStateException(
"Invalid zero padding layer config: padding [top, bottom, left, right]"
+ " must be > 0 for all elements. Got: "
+ Arrays.toString(padding));
}
}
return new ZeroPaddingLayer(this);
}
}
代码示例来源:origin: Waikato/wekaDeeplearning4j
public void setPaddingColumns(int padding) {
int[] pad = new int[]{getPaddingRows(), padding};
backend.setPadding(pad);
}
代码示例来源:origin: org.deeplearning4j/deeplearning4j-nn
public ZeroPaddingLayer(NeuralNetConfiguration conf) {
super(conf);
this.padding = ((org.deeplearning4j.nn.conf.layers.ZeroPaddingLayer) conf.getLayer()).getPadding();
}
代码示例来源:origin: Waikato/wekaDeeplearning4j
public void setPaddingRows(int padding) {
int[] pad = new int[]{padding, getPaddingColumns()};
backend.setPadding(pad);
}
我在play官方网站上关注了“Learn”。我使用的是window 7+Chrome。 D:\tester\play>dir Volume in drive D is APPLIS Volum
我有一个 play 1.2.5 应用程序,想将它部署到某个地方(这样我就可以为一些 OAuth 回调注册它)。我正在尝试将其推送到 heroku,但出现以下错误 -----> Play! app de
周围有两个配置文件,/etc/nginx/conf.d/default.conf和 /etc/nginx/nginx.conf,但是启用了哪一个呢?我运行的是 CentOS6.4 和 nginx/1.
我已经在Flume 1.6.0-cdh5.4.2(CentOS)中安装了cloudera VM 我认为配置和一切都很好 我运行了以下命令槽 flume-ng --conf /conf agent -
为了避免对我本地托管的 apache-tomcat Web 服务器上托管的 Web 应用程序进行点击劫持攻击,我正在尝试编辑“httpd.conf”文件以向其附加 X 选项。 用“sudo nano/
当我想为 intel Galileo 构建一个 yocto 镜像时,我按照网站中提到的这些说明进行操作 https://software.intel.com/en-us/blogs/2015/03/0
如果我有一个名为 mysite.conf 的文件存储在 /etc/nginx/conf.d .有没有办法获取字符串值'mysite'从conf文件中? 我想多次符号链接(symbolic link)一
为大学生编写一个应用程序——显示一个系列表,你点击一个,然后它会显示该系的类(class),点击一个,然后显示教授该类(class)的教授。 URL conf 有问题——我的应用程序不断将我重定向到错
当试图启动 apache 时 sudo /etc/init.d/apache2 restart 我得到了错误 apache2: Syntax error on line 260 of /etc/apa
我关注 this tutorial我找不到本教程第二步的 phpmyadmin.conf。我在/etc/apache2/conf-available/中只有以下文件 charset.conf othe
httpd.conf(/etc/httpd/conf/httpd.conf) 和 ssl.conf(/etc/httpd/conf.d/ssl.conf) 有什么区别 文件? 我正在尝试在我的站点上设
所有配置都被包含在内,并且 conf 测试也通过了。但是 Nginx 仍然提供来自 /usr/share/nginx/html 的默认 HTML。 , 而不是 conf.d 目录中 conf 文件的位
我是 psql 的新手,我遇到了一些我认为是错误放置的 .conf 文件引起的问题。当我尝试登录我之前创建的数据库时出现错误 $ psql corporation psql: could not co
我在 /etc/httpd/conf.d/vhost.conf 中的虚拟主机配置如下所示: NameVirtualHost * ServerName www.example.com
我遵循了教程:http://www.webopius.com/content/355/getting-mamp-working-with-ssl-on-os-x获取 ssl 证书。但是,我无法在 st
是否有一个 spark 属性,我们可以在执行 spark 提交时设置它指定 hadoop 配置路径,专门指向自定义 hdfs-site.xml 和 core-site.xml 文件 最佳答案 首选的方
在NameNode和JobTracker不是同一台服务器的hadoop集群(1.x版本)中,conf/masters和conf/slaves是需要在NameNode和JobTracker上同时指定还是
我从 Here 下载 Redis-x64-3.2.100.zip ,当我提取它时,我看到两个文件 redis.windows.conf 和 redis.windows-service.conf,我比较
我目前正在检查我们的 JBoss AS7.1 服务器配置,我在我们的 jboss/standalone/bin 目录中发现了这两个以前配置的文件: standalone.conf standalone
我一直在使用这个教程http://mpjexpress.blogspot.co.nz/2010/05/executing-and-debugging-mpj-express.html 、文本:步骤 1
我是一名优秀的程序员,十分优秀!