keras基于theano和tensorflow训练的模型相互转换

</pre><pre code_snippet_id="1947416" snippet_file_name="blog_20161025_1_3331239" name="code" class="python">
 
# coding:utf-8
"""
If you want to load pre-trained weights that include convolutions (layers Convolution2D or Convolution1D),
be mindful of this: Theano and TensorFlow implement convolution in different ways (TensorFlow actually implements correlation, much like Caffe),
and thus, convolution kernels trained with Theano (resp. TensorFlow) need to be converted before being with TensorFlow (resp. Theano).
"""
from keras import backend as K
from keras.utils.np_utils import convert_kernel
from text_classifier import keras_text_classifier
import sys

def th2tf( model):
    import tensorflow as tf
    ops = []
    for layer in model.layers:
        if layer.__class__.__name__ in ['Convolution1D', 'Convolution2D']:
            original_w = K.get_value(layer.W)
            converted_w = convert_kernel(original_w)
            ops.append(tf.assign(layer.W, converted_w).op)
    K.get_session().run(ops)
    return model

def tf2th(model):
    for layer in model.layers:
        if layer.__class__.__name__ in ['Convolution1D', 'Convolution2D']:
            original_w = K.get_value(layer.W)
            converted_w = convert_kernel(original_w)
            K.set_value(layer.W, converted_w)
    return model

def conv_layer_converted(tf_weights, th_weights, m = 0):
    """
    :param tf_weights:
    :param th_weights:
    :param m: 0-tf2th, 1-th2tf
    :return:
    """
    if m == 0: # tf2th
        tc = keras_text_classifier(weights_path=tf_weights)
        model = tc.loadmodel()
        model = tf2th(model)
        model.save_weights(th_weights)
    elif m == 1: # th2tf
        tc = keras_text_classifier(weights_path=th_weights)
        model = tc.loadmodel()
        model = th2tf(model)
        model.save_weights(tf_weights)
    else:
        print("0-tf2th, 1-th2tf")
        return
if __name__ == '__main__':
    if len(sys.argv) < 4:
        print("python tf_weights th_weights <0|1>\n0-tensorflow to theano\n1-theano to tensorflow")
        sys.exit(0)
    tf_weights = sys.argv[1]
    th_weights = sys.argv[2]
    m = int(sys.argv[3])
    conv_layer_converted(tf_weights, th_weights, m)


  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 3
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值