亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

keras如何實現densenet和Xception的模型融合

發布時間:2020-07-22 14:20:39 來源:億速云 閱讀:309 作者:小豬 欄目:開發技術

這篇文章主要講解了keras如何實現densenet和Xception的模型融合,內容清晰明了,對此有興趣的小伙伴可以學習一下,相信大家閱讀完之后會有幫助。

我正在參加天池上的一個競賽,剛開始用的是DenseNet121但是效果沒有達到預期,因此開始嘗試使用模型融合,將Desenet和Xception融合起來共同提取特征。

代碼如下:

def Multimodel(cnn_weights_path=None,all_weights_path=None,class_num=5,cnn_no_vary=False):
	'''
	獲取densent121,xinception并聯的網絡
	此處的cnn_weights_path是個列表是densenet和xception的卷積部分的權值
	'''
	input_layer=Input(shape=(224,224,3))
	dense=DenseNet121(include_top=False,weights=None,input_shape=(224,224,3))
	xception=Xception(include_top=False,weights=None,input_shape=(224,224,3))
	#res=ResNet50(include_top=False,weights=None,input_shape=(224,224,3))

	if cnn_no_vary:
		for i,layer in enumerate(dense.layers):
			dense.layers[i].trainable=False
		for i,layer in enumerate(xception.layers):
			xception.layers[i].trainable=False
		#for i,layer in enumerate(res.layers):
		#	res.layers[i].trainable=False
 
	if cnn_weights_path!=None:
		dense.load_weights(cnn_weights_path[0])
		xception.load_weights(cnn_weights_path[1])
		#res.load_weights(cnn_weights_path[2])
	dense=dense(input_layer)
	xception=xception(input_layer)

	#對dense_121和xception進行全局最大池化
	top1_model=GlobalMaxPooling2D(data_format='channels_last')(dense)
	top2_model=GlobalMaxPooling2D(data_format='channels_last')(xception)
	#top3_model=GlobalMaxPool2D(input_shape=res.output_shape)(res.outputs[0])
	
	print(top1_model.shape,top2_model.shape)
	#把top1_model和top2_model連接起來
	t=keras.layers.Concatenate(axis=1)([top1_model,top2_model])
	#第一個全連接層
	top_model=Dense(units=512,activation="relu")(t)
	top_model=Dropout(rate=0.5)(top_model)
	top_model=Dense(units=class_num,activation="softmax")(top_model)
	
	model=Model(inputs=input_layer,outputs=top_model)
 
	#加載全部的參數
	if all_weights_path:
		model.load_weights(all_weights_path)
	return model

如下進行調用:

if __name__=="__main__":
 weights_path=["./densenet121_weights_tf_dim_ordering_tf_kernels_notop.h6",
 "xception_weights_tf_dim_ordering_tf_kernels_notop.h6"]
 model=Multimodel(cnn_weights_path=weights_path,class_num=6)
 plot_model(model,to_file="G:/model.png")

最后生成的模型圖如下:有點長,可以不看

keras如何實現densenet和Xception的模型融合

需要注意的一點是,如果dense=dense(input_layer)這里報錯的話,說明你用的是tensorflow1.4以下的版本,解決的方法就是

1、升級tensorflow到1.4以上

2、改代碼:

def Multimodel(cnn_weights_path=None,all_weights_path=None,class_num=5,cnn_no_vary=False):
	'''
	獲取densent121,xinception并聯的網絡
	此處的cnn_weights_path是個列表是densenet和xception的卷積部分的權值
	'''
	dir=os.getcwd()
	input_layer=Input(shape=(224,224,3))
	
	dense=DenseNet121(include_top=False,weights=None,input_tensor=input_layer,
		input_shape=(224,224,3))
	xception=Xception(include_top=False,weights=None,input_tensor=input_layer,
		input_shape=(224,224,3))
	#res=ResNet50(include_top=False,weights=None,input_shape=(224,224,3))
 
	if cnn_no_vary:
		for i,layer in enumerate(dense.layers):
			dense.layers[i].trainable=False
		for i,layer in enumerate(xception.layers):
			xception.layers[i].trainable=False
		#for i,layer in enumerate(res.layers):
		#	res.layers[i].trainable=False
	if cnn_weights_path!=None:
		dense.load_weights(cnn_weights_path[0])
		xception.load_weights(cnn_weights_path[1])
 
	#print(dense.shape,xception.shape)
	#對dense_121和xception進行全局最大池化
	top1_model=GlobalMaxPooling2D(input_shape=(7,7,1024),data_format='channels_last')(dense.output)
	top2_model=GlobalMaxPooling2D(input_shape=(7,7,1024),data_format='channels_last')(xception.output)
	#top3_model=GlobalMaxPool2D(input_shape=res.output_shape)(res.outputs[0])
	
	print(top1_model.shape,top2_model.shape)
	#把top1_model和top2_model連接起來
	t=keras.layers.Concatenate(axis=1)([top1_model,top2_model])
	#第一個全連接層
	top_model=Dense(units=512,activation="relu")(t)
	top_model=Dropout(rate=0.5)(top_model)
	top_model=Dense(units=class_num,activation="softmax")(top_model)
	
	model=Model(inputs=input_layer,outputs=top_model)
 
	#加載全部的參數
	if all_weights_path:
		model.load_weights(all_weights_path)
	return model

這個bug我也是在服務器上跑的時候才出現的,找了半天,而實驗室的cuda和cudnn又改不了,tensorflow無法升級,因此只能改代碼了。

如下所示,是最后畫出的模型圖:(很長,底下沒內容了)

keras如何實現densenet和Xception的模型融合

看完上述內容,是不是對keras如何實現densenet和Xception的模型融合有進一步的了解,如果還想學習更多內容,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

大宁县| 连山| 沂水县| 池州市| 边坝县| 南汇区| 阳信县| 望江县| 宜黄县| 军事| 永顺县| 洛宁县| 永年县| 纳雍县| 闸北区| 江永县| 天气| 夏津县| 论坛| 无棣县| 北京市| 图片| 合水县| 德化县| 上蔡县| 黄梅县| 广安市| 桃江县| 仪征市| 天气| 潮安县| 彭泽县| 泽州县| 沂水县| 合水县| 当涂县| 崇明县| 中方县| 福安市| 徐州市| 萨嘎县|