def describe_model()

in source/src/molecule-unfolding/utility/QMUQUBO.py [0:0]


    def describe_model(self):

        # information for model
        for method, info in self.model_info.items():
            logging.info(f"method: {method}")
            if method == "pre-calc":
                logging.info(
                    "The model_name should be {M}_{D}_{A}_{hubo_qubo_val}")
            for param, value in info.items():
                logging.info("param: {}, value {}".format(param, value))

        return self.model_info