fast_scnn.py 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. # copyright (c) 2020 PaddlePaddle Authors. All Rights Reserved.
  2. #
  3. # Licensed under the Apache License, Version 2.0 (the "License");
  4. # you may not use this file except in compliance with the License.
  5. # You may obtain a copy of the License at
  6. #
  7. # http://www.apache.org/licenses/LICENSE-2.0
  8. #
  9. # Unless required by applicable law or agreed to in writing, software
  10. # distributed under the License is distributed on an "AS IS" BASIS,
  11. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. # See the License for the specific language governing permissions and
  13. # limitations under the License.
  14. from __future__ import absolute_import
  15. import paddle.fluid as fluid
  16. import paddlex
  17. from collections import OrderedDict
  18. from .deeplabv3p import DeepLabv3p
  19. class FastSCNN(DeepLabv3p):
  20. """实现Fast SCNN网络的构建并进行训练、评估、预测和模型导出。
  21. Args:
  22. num_classes (int): 类别数。
  23. use_bce_loss (bool): 是否使用bce loss作为网络的损失函数,只能用于两类分割。可与dice loss同时使用。默认False。
  24. use_dice_loss (bool): 是否使用dice loss作为网络的损失函数,只能用于两类分割,可与bce loss同时使用。
  25. 当use_bce_loss和use_dice_loss都为False时,使用交叉熵损失函数。默认False。
  26. class_weight (list/str): 交叉熵损失函数各类损失的权重。当class_weight为list的时候,长度应为
  27. num_classes。当class_weight为str时, weight.lower()应为'dynamic',这时会根据每一轮各类像素的比重
  28. 自行计算相应的权重,每一类的权重为:每类的比例 * num_classes。class_weight取默认值None是,各类的权重1,
  29. 即平时使用的交叉熵损失函数。
  30. ignore_index (int): label上忽略的值,label为ignore_index的像素不参与损失函数的计算。默认255。
  31. multi_loss_weight (list): 多分支上的loss权重。默认计算一个分支上的loss,即默认值为[1.0]。
  32. 也支持计算两个分支或三个分支上的loss,权重按[fusion_branch_weight, higher_branch_weight, lower_branch_weight]排列,
  33. fusion_branch_weight为空间细节分支和全局上下文分支融合后的分支上的loss权重,higher_branch_weight为空间细节分支上的loss权重,
  34. lower_branch_weight为全局上下文分支上的loss权重,若higher_branch_weight和lower_branch_weight未设置则不会计算这两个分支上的loss。
  35. Raises:
  36. ValueError: use_bce_loss或use_dice_loss为真且num_calsses > 2。
  37. ValueError: class_weight为list, 但长度不等于num_class。
  38. class_weight为str, 但class_weight.low()不等于dynamic。
  39. TypeError: class_weight不为None时,其类型不是list或str。
  40. TypeError: multi_loss_weight不为list。
  41. ValueError: multi_loss_weight为list但长度小于0或者大于3。
  42. """
  43. def __init__(self,
  44. num_classes=2,
  45. use_bce_loss=False,
  46. use_dice_loss=False,
  47. class_weight=None,
  48. ignore_index=255,
  49. multi_loss_weight=[1.0]):
  50. self.init_params = locals()
  51. super(DeepLabv3p, self).__init__('segmenter')
  52. # dice_loss或bce_loss只适用两类分割中
  53. if num_classes > 2 and (use_bce_loss or use_dice_loss):
  54. raise ValueError(
  55. "dice loss and bce loss is only applicable to binary classfication"
  56. )
  57. if class_weight is not None:
  58. if isinstance(class_weight, list):
  59. if len(class_weight) != num_classes:
  60. raise ValueError(
  61. "Length of class_weight should be equal to number of classes"
  62. )
  63. elif isinstance(class_weight, str):
  64. if class_weight.lower() != 'dynamic':
  65. raise ValueError(
  66. "if class_weight is string, must be dynamic!")
  67. else:
  68. raise TypeError(
  69. 'Expect class_weight is a list or string but receive {}'.
  70. format(type(class_weight)))
  71. if not isinstance(multi_loss_weight, list):
  72. raise TypeError(
  73. 'Expect multi_loss_weight is a list but receive {}'.format(
  74. type(multi_loss_weight)))
  75. if len(multi_loss_weight) > 3 or len(multi_loss_weight) < 0:
  76. raise ValueError(
  77. "Length of multi_loss_weight should be lower than or equal to 3 but greater than 0."
  78. )
  79. self.num_classes = num_classes
  80. self.use_bce_loss = use_bce_loss
  81. self.use_dice_loss = use_dice_loss
  82. self.class_weight = class_weight
  83. self.multi_loss_weight = multi_loss_weight
  84. self.ignore_index = ignore_index
  85. self.labels = None
  86. self.fixed_input_shape = None
  87. def build_net(self, mode='train'):
  88. model = paddlex.cv.nets.segmentation.FastSCNN(
  89. self.num_classes,
  90. mode=mode,
  91. use_bce_loss=self.use_bce_loss,
  92. use_dice_loss=self.use_dice_loss,
  93. class_weight=self.class_weight,
  94. ignore_index=self.ignore_index,
  95. multi_loss_weight=self.multi_loss_weight,
  96. fixed_input_shape=self.fixed_input_shape)
  97. inputs = model.generate_inputs()
  98. model_out = model.build_net(inputs)
  99. outputs = OrderedDict()
  100. if mode == 'train':
  101. self.optimizer.minimize(model_out)
  102. outputs['loss'] = model_out
  103. else:
  104. outputs['pred'] = model_out[0]
  105. outputs['logit'] = model_out[1]
  106. return inputs, outputs
  107. def train(self,
  108. num_epochs,
  109. train_dataset,
  110. train_batch_size=2,
  111. eval_dataset=None,
  112. save_interval_epochs=1,
  113. log_interval_steps=2,
  114. save_dir='output',
  115. pretrain_weights='CITYSCAPES',
  116. optimizer=None,
  117. learning_rate=0.01,
  118. lr_decay_power=0.9,
  119. use_vdl=False,
  120. sensitivities_file=None,
  121. eval_metric_loss=0.05,
  122. early_stop=False,
  123. early_stop_patience=5,
  124. resume_checkpoint=None):
  125. """训练。
  126. Args:
  127. num_epochs (int): 训练迭代轮数。
  128. train_dataset (paddlex.datasets): 训练数据读取器。
  129. train_batch_size (int): 训练数据batch大小。同时作为验证数据batch大小。默认2。
  130. eval_dataset (paddlex.datasets): 评估数据读取器。
  131. save_interval_epochs (int): 模型保存间隔(单位:迭代轮数)。默认为1。
  132. log_interval_steps (int): 训练日志输出间隔(单位:迭代次数)。默认为2。
  133. save_dir (str): 模型保存路径。默认'output'。
  134. pretrain_weights (str): 若指定为路径时,则加载路径下预训练模型;若为字符串'CITYSCAPES'
  135. 则自动下载在CITYSCAPES图片数据上预训练的模型权重;若为None,则不使用预训练模型。默认为'CITYSCAPES'。
  136. optimizer (paddle.fluid.optimizer): 优化器。当改参数为None时,使用默认的优化器:使用
  137. fluid.optimizer.Momentum优化方法,polynomial的学习率衰减策略。
  138. learning_rate (float): 默认优化器的初始学习率。默认0.01。
  139. lr_decay_power (float): 默认优化器学习率多项式衰减系数。默认0.9。
  140. use_vdl (bool): 是否使用VisualDL进行可视化。默认False。
  141. sensitivities_file (str): 若指定为路径时,则加载路径下敏感度信息进行裁剪;若为字符串'DEFAULT',
  142. 则自动下载在Cityscapes图片数据上获得的敏感度信息进行裁剪;若为None,则不进行裁剪。默认为None。
  143. eval_metric_loss (float): 可容忍的精度损失。默认为0.05。
  144. early_stop (bool): 是否使用提前终止训练策略。默认值为False。
  145. early_stop_patience (int): 当使用提前终止训练策略时,如果验证集精度在`early_stop_patience`个epoch内
  146. 连续下降或持平,则终止训练。默认值为5。
  147. resume_checkpoint (str): 恢复训练时指定上次训练保存的模型路径。若为None,则不会恢复训练。默认值为None。
  148. Raises:
  149. ValueError: 模型从inference model进行加载。
  150. """
  151. return super(FastSCNN, self).train(
  152. num_epochs, train_dataset, train_batch_size, eval_dataset,
  153. save_interval_epochs, log_interval_steps, save_dir,
  154. pretrain_weights, optimizer, learning_rate, lr_decay_power,
  155. use_vdl, sensitivities_file, eval_metric_loss, early_stop,
  156. early_stop_patience, resume_checkpoint)