Source code for deepmd.utils.finetune

# SPDX-License-Identifier: LGPL-3.0-or-later
import json
import logging
from typing import (
    Any,
    Dict,
)

from deepmd.utils.errors import (
    GraphWithoutTensorError,
)
from deepmd.utils.graph import (
    get_tensor_by_name,
)

log = logging.getLogger(__name__)


[docs]def replace_model_params_with_pretrained_model( jdata: Dict[str, Any], pretrained_model: str ): """Replace the model params in input script according to pretrained model. Parameters ---------- jdata : Dict[str, Any] input script pretrained_model : str filename of the pretrained model """ # Get the input script from the pretrained model try: t_jdata = get_tensor_by_name(pretrained_model, "train_attr/training_script") except GraphWithoutTensorError as e: raise RuntimeError( "The input frozen pretrained model: %s has no training script, " "which is not supported to perform finetuning. " "Please use the model pretrained with v2.1.5 or higher version of DeePMD-kit." % input ) from e pretrained_jdata = json.loads(t_jdata) # Check the model type assert ( pretrained_jdata["model"]["descriptor"]["type"] in [ "se_atten", "se_atten_v2", ] and pretrained_jdata["model"]["fitting_net"]["type"] in ["ener"] ), "The finetune process only supports models pretrained with 'se_atten' or 'se_atten_v2' descriptor and 'ener' fitting_net!" # Check the type map pretrained_type_map = pretrained_jdata["model"]["type_map"] cur_type_map = jdata["model"].get("type_map", []) out_line_type = [] for i in cur_type_map: if i not in pretrained_type_map: out_line_type.append(i) assert not out_line_type, ( f"{out_line_type!s} type(s) not contained in the pretrained model! " "Please choose another suitable one." ) if cur_type_map != pretrained_type_map: log.info( "Change the type_map from {} to {}.".format( str(cur_type_map), str(pretrained_type_map) ) ) jdata["model"]["type_map"] = pretrained_type_map # Change model configurations log.info("Change the model configurations according to the pretrained one...") for config_key in ["type_embedding", "descriptor", "fitting_net"]: if ( config_key not in jdata["model"].keys() and config_key in pretrained_jdata["model"].keys() ): log.info( "Add the '{}' from pretrained model: {}.".format( config_key, str(pretrained_jdata["model"][config_key]) ) ) jdata["model"][config_key] = pretrained_jdata["model"][config_key] elif ( config_key == "type_embedding" and config_key in jdata["model"].keys() and config_key not in pretrained_jdata["model"].keys() ): # 'type_embedding' can be omitted using 'se_atten' descriptor, and the activation_function will be None. cur_para = jdata["model"].pop(config_key) if "trainable" in cur_para and not cur_para["trainable"]: jdata["model"][config_key] = { "trainable": False, "activation_function": "None", } log.info("The type_embeddings from pretrained model will be frozen.") elif ( config_key in jdata["model"].keys() and config_key in pretrained_jdata["model"].keys() and jdata["model"][config_key] != pretrained_jdata["model"][config_key] ): target_para = pretrained_jdata["model"][config_key] cur_para = jdata["model"][config_key] # keep some params that are irrelevant to model structures (need to discuss) TODO if "trainable" in cur_para.keys(): target_para["trainable"] = cur_para["trainable"] log.info(f"Change the '{config_key}' from {cur_para!s} to {target_para!s}.") jdata["model"][config_key] = target_para return jdata, cur_type_map