简体   繁体   中英

How to use pickled pretrained weights in Tensorflow 2?

I'm trying to load a pkl file that was generated in a model trained with tensorflow 1.x in tf2. model.load_weights(checkpoint_path) does not seem to work. any suggestions?

Try loading the pickle file then get the weights.

import pickle
import tensorflow as tf

model = pickle.loads('<path>')
loaded_model = model.get_weights()

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM