DL4J中文文檔/Keras模型導(dǎo)入/核心層

Keras 核心層


KerasFlatten

[源碼]

作為DL4J的Cnn或Rnn將Keras的Flatten層導(dǎo)入到前饋InputPreProcessor(輸入預(yù)入理器)

KerasFlatten

public KerasFlatten(Map<String, Object> layerConfig)
            throws InvalidKerasConfigurationException, UnsupportedKerasConfigurationException 

image.gif

來自解析的keras層配置字典的構(gòu)造函數(shù)换吧。

  • 參數(shù) layerConfig 包含keras層配置的字典
  • 拋出 InvalidKerasConfigurationException 無效的 Keras 配置
  • 拋出 UnsupportedKerasConfigurationException 不支持的無效的 Keras 配置

isInputPreProcessor(是否為輸入預(yù)處理器)

public boolean isInputPreProcessor() 

image.gif

返回布爾值

public KerasFlatten(Map<String, Object> layerConfig, boolean enforceTrainingConfig)
                    throws InvalidKerasConfigurationException, UnsupportedKerasConfigurationException
image.gif

來自解析的keras層配置字典的構(gòu)造函數(shù)蝉衣。

  • 參數(shù) layerConfig 包含keras層配置的字典
  • 參數(shù) enforceTrainingConfig 是否強制執(zhí)行與訓(xùn)練相關(guān)的配置選項
  • 拋出 InvalidKerasConfigurationException 無效的 Keras 配置
  • 拋出 UnsupportedKerasConfigurationException 不支持的無效的 Keras 配置

getInputPreprocessor

public InputPreProcessor getInputPreprocessor(InputType... inputType) throws InvalidKerasConfigurationException 

image.gif

為給定的輸入類型獲取適合的DL4J輸入預(yù)處理器

  • 參數(shù) inputType 輸入類型數(shù)組
  • 返回 DL4J 輸入預(yù)處理器
  • 拋出 InvalidKerasConfigurationException 無效的 Keras 配置
  • 查看 org.deeplearning4j.nn.conf.InputPreProcessor

getOutputType

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

image.gif

獲取層輸出類型

  • 參數(shù) inputType 輸入類型數(shù)組
  • 返回 按輸入類型返回輸出類型
  • 拋出 InvalidKerasConfigurationException 無效的 Keras 配置

KerasPermute

[源碼]

從Keras導(dǎo)入Permute層

KerasPermute

public KerasPermute(Map<String, Object> layerConfig)
            throws InvalidKerasConfigurationException, UnsupportedKerasConfigurationException 

image.gif

來自解析的keras層配置字典的構(gòu)造函數(shù)。

  • 參數(shù) layerConfig 包含keras層配置的字典
  • 拋出 InvalidKerasConfigurationException 無效的 Keras 配置
  • 拋出 UnsupportedKerasConfigurationException 不支持的無效的 Keras 配置

isInputPreProcessor(是否為輸入預(yù)處理器)

public boolean isInputPreProcessor() 

image.gif

返回布爾值

public KerasPermute(Map<String, Object> layerConfig, boolean enforceTrainingConfig)
            throws InvalidKerasConfigurationException, UnsupportedKerasConfigurationException
image.gif

來自解析的keras層配置字典的構(gòu)造函數(shù)。

  • 參數(shù) layerConfig 包含keras層配置的字典
  • 參數(shù) enforceTrainingConfig 是否強制執(zhí)行與訓(xùn)練相關(guān)的配置選項
  • 拋出 InvalidKerasConfigurationException 無效的 Keras 配置
  • 拋出 UnsupportedKerasConfigurationException 不支持的無效的 Keras 配置

getInputPreprocessor

public InputPreProcessor getInputPreprocessor(InputType... inputType) throws
            InvalidKerasConfigurationException 

image.gif

為給定的輸入類型獲取適合的DL4J輸入預(yù)處理器

  • 參數(shù) inputType 輸入類型數(shù)組
  • 返回 DL4J 輸入預(yù)處理器
  • 拋出 InvalidKerasConfigurationException 無效的 Keras 配置
  • 查看 org.deeplearning4j.nn.conf.InputPreProcessor

getOutputType

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

image.gif

獲取層輸出類型

  • 參數(shù) inputType 輸入類型數(shù)組
  • 返回 按輸入類型返回輸出類型
  • 拋出 InvalidKerasConfigurationException 無效的 Keras 配置

KerasRepeatVector

[源碼]

導(dǎo)入Keras的RepeatVector層

KerasRepeatVector

public KerasRepeatVector(Map<String, Object> layerConfig)
            throws InvalidKerasConfigurationException, UnsupportedKerasConfigurationException 

image.gif

來自解析的keras層配置字典的構(gòu)造函數(shù)魂莫。

  • 參數(shù) layerConfig 包含keras層配置的字典
  • 拋出 InvalidKerasConfigurationException 無效的 Keras 配置
  • 拋出 UnsupportedKerasConfigurationException 不支持的無效的 Keras 配置

getOutputType

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

image.gif

獲取層輸出類型

  • 參數(shù) inputType 輸入類型數(shù)組
  • 返回 按輸入類型返回輸出類型
  • 拋出 InvalidKerasConfigurationException 無效的 Keras 配置
public KerasRepeatVector(Map<String, Object> layerConfig, boolean enforceTrainingConfig)
            throws InvalidKerasConfigurationException, UnsupportedKerasConfigurationException
image.gif

來自解析的keras層配置字典的構(gòu)造函數(shù)。

  • 參數(shù) layerConfig 包含keras層配置的字典
  • 參數(shù) enforceTrainingConfig 是否強制執(zhí)行與訓(xùn)練相關(guān)的配置選項
  • 拋出 InvalidKerasConfigurationException 無效的 Keras 配置
  • 拋出 UnsupportedKerasConfigurationException 不支持的無效的 Keras 配置

getRepeatVectorLayer

public RepeatVector getRepeatVectorLayer() 

image.gif

獲取 DL4J RepeatVector.

  • 返回 RepeatVector

KerasMasking

[源碼]

導(dǎo)入Keras遮罩層

KerasMasking

public KerasMasking(Map<String, Object> layerConfig)
            throws InvalidKerasConfigurationException, UnsupportedKerasConfigurationException 

image.gif

來自解析的keras層配置字典的構(gòu)造函數(shù)病涨。

  • 參數(shù) layerConfig 包含keras層配置的字典
  • 拋出 InvalidKerasConfigurationException 無效的 Keras 配置
  • 拋出 UnsupportedKerasConfigurationException 不支持的無效的 Keras 配置

getOutputType

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

image.gif

獲取層輸出類型

  • 參數(shù) inputType 輸入類型數(shù)組
  • 返回 按輸入類型返回輸出類型
  • 拋出 InvalidKerasConfigurationException 無效的 Keras 配置
public KerasMasking(Map<String, Object> layerConfig, boolean enforceTrainingConfig)
            throws InvalidKerasConfigurationException, UnsupportedKerasConfigurationException
image.gif

來自解析的keras層配置字典的構(gòu)造函數(shù)啰扛。

  • 參數(shù) layerConfig 包含keras層配置的字典
  • 參數(shù) enforceTrainingConfig 是否強制執(zhí)行與訓(xùn)練相關(guān)的配置選項
  • 拋出 InvalidKerasConfigurationException 無效的 Keras 配置
  • 拋出 UnsupportedKerasConfigurationException 不支持的無效的 Keras 配置

getMaskingLayer

public MaskZeroLayer getMaskingLayer() 

image.gif

獲取 DL4J MaskZeroLayer.

  • 返回 MaskZeroLayer

KerasActivation

[源碼]

從Keras導(dǎo)入一個激活層

KerasActivation

public KerasActivation(Map<String, Object> layerConfig)
            throws InvalidKerasConfigurationException, UnsupportedKerasConfigurationException 

image.gif

來自解析的keras層配置字典的構(gòu)造函數(shù)。

  • 參數(shù) layerConfig 包含keras層配置的字典
  • 拋出 InvalidKerasConfigurationException 無效的 Keras 配置
  • 拋出 UnsupportedKerasConfigurationException 不支持的無效的 Keras 配置

getOutputType

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

image.gif

獲取層輸出類型

  • 參數(shù) inputType 輸入類型數(shù)組
  • 返回 按輸入類型返回輸出類型
  • 拋出 InvalidKerasConfigurationException 無效的 Keras 配置
public KerasActivation(Map<String, Object> layerConfig, boolean enforceTrainingConfig)
            throws InvalidKerasConfigurationException, UnsupportedKerasConfigurationException
image.gif

來自解析的keras層配置字典的構(gòu)造函數(shù)馆揉。

  • 參數(shù) layerConfig 包含keras層配置的字典
  • 參數(shù) enforceTrainingConfig 是否強制執(zhí)行與訓(xùn)練相關(guān)的配置選項
  • 拋出 InvalidKerasConfigurationException 無效的 Keras 配置
  • 拋出 UnsupportedKerasConfigurationException 不支持的無效的 Keras 配置

getActivationLayer

public ActivationLayer getActivationLayer() 

image.gif

獲取 DL4J ActivationLayer.

  • 返回 ActivationLayer

KerasSpatialDropout

[源碼]

用于DL4J dropout層的Keras包裝器业舍,帶有SpatialDropout,用于1D到3D.

KerasSpatialDropout

public KerasSpatialDropout(Integer kerasVersion) throws UnsupportedKerasConfigurationException 

image.gif

從KerasLayer傳遞構(gòu)造函數(shù)

  • 參數(shù) kerasVersion Keras主版本
  • 拋出 UnsupportedKerasConfigurationException 不支持的 Keras 配置

getOutputType

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

image.gif

獲取層輸出類型

  • 參數(shù) inputType 輸入類型數(shù)組
  • 返回 按輸入類型返回輸出類型
  • 拋出 InvalidKerasConfigurationException 無效的 Keras 配置
public KerasSpatialDropout(Map<String, Object> layerConfig)
            throws InvalidKerasConfigurationException, UnsupportedKerasConfigurationException
image.gif

來自解析的keras層配置字典的構(gòu)造函數(shù)升酣。

  • 參數(shù) layerConfig 包含keras層配置的字典
  • 拋出 InvalidKerasConfigurationException 無效的 Keras 配置
  • 拋出 UnsupportedKerasConfigurationException 不支持的無效的 Keras 配置

getSpatialDropoutLayer

public DropoutLayer getSpatialDropoutLayer() 

image.gif

獲取 帶有空間 dropout的DL4J DropoutLayer

  • 返回 DropoutLayer

KerasLambda

[源碼]

將DL4J SamedifFlambda包裝到Keraslayer中

KerasLambda

public KerasLambda(Map<String, Object> layerConfig, SameDiffLayer sameDiffLayer)
            throws InvalidKerasConfigurationException, UnsupportedKerasConfigurationException 

image.gif

來自解析的keras層配置字典的構(gòu)造函數(shù)舷暮。

  • 參數(shù) layerConfig 包含keras層配置的字典
  • 拋出 InvalidKerasConfigurationException 無效的 Keras 配置
  • 拋出 UnsupportedKerasConfigurationException 不支持的無效的 Keras 配置

getOutputType

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

image.gif

獲取層輸出類型

  • 參數(shù) inputType 輸入類型數(shù)組
  • 返回 按輸入類型返回輸出類型
  • 拋出 InvalidKerasConfigurationException 無效的 Keras 配置
public KerasLambda(Map<String, Object> layerConfig, boolean enforceTrainingConfig,
                       SameDiffLayer sameDiffLayer)
            throws InvalidKerasConfigurationException, UnsupportedKerasConfigurationException
image.gif

來自解析的keras層配置字典的構(gòu)造函數(shù)。

  • 參數(shù) layerConfig 包含keras層配置的字典
  • 參數(shù) enforceTrainingConfig 是否強制執(zhí)行與訓(xùn)練相關(guān)的配置選項
  • 拋出 InvalidKerasConfigurationException 無效的 Keras 配置
  • 拋出 UnsupportedKerasConfigurationException 不支持的無效的 Keras 配置

getSameDiffLayer

public SameDiffLayer getSameDiffLayer() 

image.gif

獲取 DL4J SameDiffLayer.

  • 返回 SameDiffLayer

KerasReshape

[源碼]

從Keras導(dǎo)入Reshape層

KerasReshape

public KerasReshape(Map<String, Object> layerConfig)
            throws InvalidKerasConfigurationException, UnsupportedKerasConfigurationException 

image.gif

來自解析的keras層配置字典的構(gòu)造函數(shù)噩茄。

  • 參數(shù) layerConfig 包含keras層配置的字典
  • 拋出 InvalidKerasConfigurationException 無效的 Keras 配置
  • 拋出 UnsupportedKerasConfigurationException 不支持的無效的 Keras 配置

isInputPreProcessor

public boolean isInputPreProcessor() 

image.gif
 public KerasReshape(Map<String, Object> layerConfig, boolean enforceTrainingConfig)
            throws InvalidKerasConfigurationException, UnsupportedKerasConfigurationException
image.gif

來自解析的keras層配置字典的構(gòu)造函數(shù)下面。

  • 參數(shù) layerConfig 包含keras層配置的字典
  • 參數(shù) enforceTrainingConfig 是否強制執(zhí)行與訓(xùn)練相關(guān)的配置選項
  • 拋出 InvalidKerasConfigurationException 無效的 Keras 配置
  • 拋出 UnsupportedKerasConfigurationException 不支持的無效的 Keras 配置

getInputPreprocessor

public InputPreProcessor getInputPreprocessor(InputType... inputType) throws InvalidKerasConfigurationException 

image.gif

為給定的輸入類型獲取適合的DL4J輸入預(yù)處理器

  • 參數(shù) inputType 輸入類型數(shù)組
  • 返回 DL4J 輸入預(yù)處理器
  • 拋出 InvalidKerasConfigurationException 無效的 Keras 配置
  • 查看 org.deeplearning4j.nn.conf.InputPreProcessor

getOutputType

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

image.gif

獲取層輸出類型

  • 參數(shù) inputType 輸入類型數(shù)組
  • 返回 按輸入類型返回輸出類型
  • 拋出 InvalidKerasConfigurationException 無效的 Keras 配置

KerasMerge

[源碼]

導(dǎo)入一個Keras合并層作為DL4J的合并頂點

TODO: 處理改變合并行為的軸參數(shù)(需要更改dl4j?)

KerasMerge

public KerasMerge(Integer kerasVersion) throws UnsupportedKerasConfigurationException 

image.gif

從KerasLayer傳遞構(gòu)造函數(shù)

  • 參數(shù) kerasVersion Keras主版本
  • 拋出 UnsupportedKerasConfigurationException 不支持的 Keras 配置

getOutputType

public InputType getOutputType(InputType... inputType) 

image.gif

獲取層輸出類型

  • 參數(shù) inputType 輸入類型數(shù)組
  • 返回 按輸入類型返回輸出類型
  • 拋出 InvalidKerasConfigurationException 無效的 Keras 配置
 public KerasMerge(Map<String, Object> layerConfig)
            throws InvalidKerasConfigurationException, UnsupportedKerasConfigurationException 
image.gif

來自解析的keras層配置字典的構(gòu)造函數(shù)巢墅。

  • 參數(shù) layerConfig 包含keras層配置的字典
  • 拋出 InvalidKerasConfigurationException 無效的 Keras 配置
  • 拋出 UnsupportedKerasConfigurationException 不支持的無效的 Keras 配置

KerasDropout

[源碼]

從Keras導(dǎo)入Dropout層

KerasDropout

public KerasDropout(Map<String, Object> layerConfig)
                    throws InvalidKerasConfigurationException, UnsupportedKerasConfigurationException 

image.gif

來自解析的keras層配置字典的構(gòu)造函數(shù)诸狭。

  • 參數(shù) layerConfig 包含keras層配置的字典
  • 拋出 InvalidKerasConfigurationException 無效的 Keras 配置
  • 拋出 UnsupportedKerasConfigurationException 不支持的無效的 Keras 配置

getOutputType

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

image.gif

獲取層輸出類型

  • 參數(shù) inputType 輸入類型數(shù)組
  • 返回 按輸入類型返回輸出類型
  • 拋出 InvalidKerasConfigurationException 無效的 Keras 配置
public KerasDropout(Map<String, Object> layerConfig, boolean enforceTrainingConfig)
                    throws InvalidKerasConfigurationException, UnsupportedKerasConfigurationException
image.gif

來自解析的keras層配置字典的構(gòu)造函數(shù)券膀。

  • 參數(shù) layerConfig 包含keras層配置的字典
  • 參數(shù) enforceTrainingConfig 是否強制執(zhí)行與訓(xùn)練相關(guān)的配置選項
  • 拋出 InvalidKerasConfigurationException 無效的 Keras 配置
  • 拋出 UnsupportedKerasConfigurationException 不支持的無效的 Keras 配置

getDropoutLayer

public DropoutLayer getDropoutLayer() 

image.gif

獲取 DL4J DropoutLayer.

  • 返回 DropoutLayer

KerasDense

[源碼]

從Keras導(dǎo)入一個密連層

KerasDense

public KerasDense(Integer kerasVersion) throws UnsupportedKerasConfigurationException 

image.gif

從KerasLayer傳遞構(gòu)造函數(shù)

  • 參數(shù) kerasVersion Keras主版本
  • 拋出 UnsupportedKerasConfigurationException 不支持的 Keras 配置

getDenseLayer

public DenseLayer getDenseLayer() 

image.gif

獲取密連層

public KerasDense(Map<String, Object> layerConfig)
            throws InvalidKerasConfigurationException, UnsupportedKerasConfigurationException
image.gif

來自解析的keras層配置字典的構(gòu)造函數(shù)。

  • 參數(shù) layerConfig 包含keras層配置的字典
  • 拋出 InvalidKerasConfigurationException 無效的 Keras 配置
  • 拋出 UnsupportedKerasConfigurationException 不支持的無效的 Keras 配置

getOutputType

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

image.gif

獲取層輸出類型

  • 參數(shù) inputType 輸入類型數(shù)組
  • 返回 按輸入類型返回輸出類型
  • 拋出 InvalidKerasConfigurationException 無效的 Keras 配置

getNumParams

public int getNumParams() 

image.gif

返回層中可訓(xùn)練參數(shù)的數(shù)目驯遇。

setWeights

public void setWeights(Map<String, INDArray> weights) throws InvalidKerasConfigurationException 

image.gif

設(shè)置層的權(quán)重

  • 參數(shù) weights 密連層權(quán)重
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末芹彬,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子叉庐,更是在濱河造成了極大的恐慌舒帮,老刑警劉巖,帶你破解...
    沈念sama閱讀 207,248評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件陡叠,死亡現(xiàn)場離奇詭異玩郊,居然都是意外死亡,警方通過查閱死者的電腦和手機枉阵,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,681評論 2 381
  • 文/潘曉璐 我一進店門译红,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人兴溜,你說我怎么就攤上這事侦厚。” “怎么了拙徽?”我有些...
    開封第一講書人閱讀 153,443評論 0 344
  • 文/不壞的土叔 我叫張陵刨沦,是天一觀的道長。 經(jīng)常有香客問我膘怕,道長想诅,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 55,475評論 1 279
  • 正文 為了忘掉前任岛心,我火速辦了婚禮来破,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘忘古。我一直安慰自己讳癌,他們只是感情好,可當(dāng)我...
    茶點故事閱讀 64,458評論 5 374
  • 文/花漫 我一把揭開白布存皂。 她就那樣靜靜地躺著晌坤,像睡著了一般。 火紅的嫁衣襯著肌膚如雪旦袋。 梳的紋絲不亂的頭發(fā)上骤菠,一...
    開封第一講書人閱讀 49,185評論 1 284
  • 那天,我揣著相機與錄音疤孕,去河邊找鬼商乎。 笑死,一個胖子當(dāng)著我的面吹牛祭阀,可吹牛的內(nèi)容都是我干的鹉戚。 我是一名探鬼主播鲜戒,決...
    沈念sama閱讀 38,451評論 3 401
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼抹凳!你這毒婦竟也來了遏餐?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,112評論 0 261
  • 序言:老撾萬榮一對情侶失蹤赢底,失蹤者是張志新(化名)和其女友劉穎失都,沒想到半個月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體幸冻,經(jīng)...
    沈念sama閱讀 43,609評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡粹庞,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,083評論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了洽损。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片庞溜。...
    茶點故事閱讀 38,163評論 1 334
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖碑定,靈堂內(nèi)的尸體忽然破棺而出强缘,到底是詐尸還是另有隱情,我是刑警寧澤不傅,帶...
    沈念sama閱讀 33,803評論 4 323
  • 正文 年R本政府宣布,位于F島的核電站赏胚,受9級特大地震影響访娶,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜觉阅,卻給世界環(huán)境...
    茶點故事閱讀 39,357評論 3 307
  • 文/蒙蒙 一崖疤、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧典勇,春花似錦劫哼、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,357評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至伤溉,卻和暖如春般码,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背乱顾。 一陣腳步聲響...
    開封第一講書人閱讀 31,590評論 1 261
  • 我被黑心中介騙來泰國打工板祝, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人走净。 一個月前我還...
    沈念sama閱讀 45,636評論 2 355
  • 正文 我出身青樓券时,卻偏偏與公主長得像孤里,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子橘洞,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 42,925評論 2 344

推薦閱讀更多精彩內(nèi)容