美文网首页
DL4J中文文档/Keras模型导入/噪声层

DL4J中文文档/Keras模型导入/噪声层

作者: hello风一样的男子 | 来源:发表于2019-01-16 18:23 被阅读0次

    KerasGaussianDropout

    [源码]

    带GaussianDropout的DL4J dropout层的Keras包装器。

    KerasGaussianDropout

    public KerasGaussianDropout(Integer kerasVersion) throws UnsupportedKerasConfigurationException 
    
    
    image.gif

    从KerasLayer传递构造函数

    • 参数 kerasVersion Keras主版本
    • 抛出 UnsupportedKerasConfigurationException 不支持的 Keras 配置

    getOutputType

    public InputType getOutputType(InputType... inputType) throws InvalidKerasConfigurationException 
    
    
    image.gif

    获取层输出类型

    • 参数 inputType 输入类型数组
    • 返回 按输入类型返回输出类型
    • 抛出 InvalidKerasConfigurationException 无效的 Keras 配置
     public KerasGaussianDropout(Map<String, Object> layerConfig)
                throws InvalidKerasConfigurationException, UnsupportedKerasConfigurationException
    
    image.gif

    来自解析的keras层配置字典的构造函数。

    • 参数 layerConfig 包含keras层配置的字典
    • 抛出 InvalidKerasConfigurationException 无效的 Keras 配置
    • 抛出 UnsupportedKerasConfigurationException 不支持的无效的 Keras 配置

    getGaussianDropoutLayer

    public DropoutLayer getGaussianDropoutLayer() 
    
    
    image.gif

    获取 带GaussianDropout的DL4J 的 dropout层

    • 返回 DropoutLayer

    KerasAlphaDropout

    [源码]

    带AlphaDropout的DL4J 的 dropout层 的Keras包装器

    KerasAlphaDropout

    public KerasAlphaDropout(Integer kerasVersion) throws UnsupportedKerasConfigurationException 
    
    
    image.gif

    从KerasLayer传递构造函数

    • 参数 kerasVersion Keras主版本
    • 抛出 UnsupportedKerasConfigurationException 不支持的 Keras 配置

    getOutputType

    public InputType getOutputType(InputType... inputType) throws InvalidKerasConfigurationException 
    
    
    image.gif

    获取层输出类型

    • 参数 inputType 输入类型数组
    • 返回 按输入类型返回输出类型
    • 抛出 InvalidKerasConfigurationException 无效的 Keras 配置
      public KerasAlphaDropout(Map<String, Object> layerConfig)
                throws InvalidKerasConfigurationException, UnsupportedKerasConfigurationException
    
    image.gif

    来自解析的keras层配置字典的构造函数。

    • 参数 layerConfig 包含keras层配置的字典
    • 抛出 InvalidKerasConfigurationException 无效的 Keras 配置
    • 抛出 UnsupportedKerasConfigurationException 不支持的无效的 Keras 配置

    getAlphaDropoutLayer

    public DropoutLayer getAlphaDropoutLayer() 
    
    
    image.gif

    获取带AlphaDropout的DL4J 的 dropout层

    • 返回 DropoutLayer

    KerasGaussianNoise

    [源码]

    带GaussianNoise的DL4J 的 dropout层 的Keras包装器

    KerasGaussianNoise

    public KerasGaussianNoise(Integer kerasVersion) throws UnsupportedKerasConfigurationException 
    
    
    image.gif

    从KerasLayer传递构造函数

    • 参数 kerasVersion Keras主版本
    • 抛出 UnsupportedKerasConfigurationException 不支持的 Keras 配置

    getOutputType

    public InputType getOutputType(InputType... inputType) throws InvalidKerasConfigurationException 
    
    
    image.gif

    获取层输出类型

    • 参数 inputType 输入类型数组
    • 返回 按输入类型返回输出类型
    • 抛出 InvalidKerasConfigurationException 无效的 Keras 配置
      public KerasGaussianNoise(Map<String, Object> layerConfig)
                throws InvalidKerasConfigurationException, UnsupportedKerasConfigurationException
    
    image.gif

    来自解析的keras层配置字典的构造函数。

    • 参数 layerConfig 包含keras层配置的字典
    • 抛出 InvalidKerasConfigurationException 无效的 Keras 配置
    • 抛出 UnsupportedKerasConfigurationException 不支持的无效的 Keras 配置

    getGaussianNoiseLayer

    public DropoutLayer getGaussianNoiseLayer() 
    
    
    image.gif

    获取 带GaussianNoise的DL4J 的dropout层

    • 返回 DropoutLayer

    相关文章

      网友评论

          本文标题:DL4J中文文档/Keras模型导入/噪声层

          本文链接:https://www.haomeiwen.com/subject/qtfvdqtx.html