| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- #copyright (c) 2020 PaddlePaddle Authors. All Rights Reserved.
- #
- #Licensed under the Apache License, Version 2.0 (the "License");
- #you may not use this file except in compliance with the License.
- #You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- #Unless required by applicable law or agreed to in writing, software
- #distributed under the License is distributed on an "AS IS" BASIS,
- #WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- #See the License for the specific language governing permissions and
- #limitations under the License.
- import argparse
- import os
- # 选择使用0号卡
- os.environ['CUDA_VISIBLE_DEVICES'] = '0'
- import paddlex as pdx
- def cal_sensitivies_file(model_dir, dataset, save_file):
- # 加载模型
- model = pdx.load_model(model_dir)
- # 定义验证所用的数据集
- eval_dataset = pdx.datasets.SegDataset(
- data_dir=dataset,
- file_list=os.path.join(dataset, 'val_list.txt'),
- label_list=os.path.join(dataset, 'labels.txt'),
- transforms=model.eval_transforms)
- pdx.slim.cal_params_sensitivities(
- model, save_file, eval_dataset, batch_size=4)
- pdx.slim.visualize(model, save_file, save_dir='./')
- if __name__ == '__main__':
- parser = argparse.ArgumentParser(description=__doc__)
- parser.add_argument(
- "--model_dir",
- default="./output/unet/best_model",
- type=str,
- help="The model path.")
- parser.add_argument(
- "--dataset",
- default="./optic_disc_seg",
- type=str,
- help="The dataset path.")
- parser.add_argument(
- "--save_file",
- default="./sensitivities.data",
- type=str,
- help="The sensitivities file path.")
- args = parser.parse_args()
- cal_sensitivies_file(args.model_dir, args.dataset, args.save_file)
|