diff --git a/example/bert_clue/evaluation.py b/example/bert_clue/evaluation.py index 96e20b1c0d..2d1086236d 100644 --- a/example/bert_clue/evaluation.py +++ b/example/bert_clue/evaluation.py @@ -82,6 +82,8 @@ def get_dataset(batch_size=1, repeat_count=1, distribute_file=''): ''' get dataset ''' + _ = distribute_file + ds = de.TFRecordDataset([cfg.data_file], cfg.schema_file, columns_list=["input_ids", "input_mask", "segment_ids", "label_ids"]) type_cast_op = C.TypeCast(mstype.int32) diff --git a/example/bert_clue/finetune.py b/example/bert_clue/finetune.py index b81b2c48d3..d3cd22a3bd 100644 --- a/example/bert_clue/finetune.py +++ b/example/bert_clue/finetune.py @@ -58,6 +58,8 @@ def get_dataset(batch_size=1, repeat_count=1, distribute_file=''): ''' get dataset ''' + _ = distribute_file + ds = de.TFRecordDataset([cfg.data_file], cfg.schema_file, columns_list=["input_ids", "input_mask", "segment_ids", "label_ids"]) type_cast_op = C.TypeCast(mstype.int32) diff --git a/mindspore/nn/layer/quant.py b/mindspore/nn/layer/quant.py index cec0f8aa7e..fe1c0e9f45 100644 --- a/mindspore/nn/layer/quant.py +++ b/mindspore/nn/layer/quant.py @@ -208,6 +208,7 @@ class Conv2dBatchNormQuant(Cell): symmetric=False, narrow_range=False): super(Conv2dBatchNormQuant, self).__init__() + _ = dilation self.stride = stride self.conv = P.Conv2D(out_channel=out_channels, kernel_size=kernel_size, diff --git a/mindspore/ops/operations/nn_ops.py b/mindspore/ops/operations/nn_ops.py index 90d448e55a..a80500c0e6 100644 --- a/mindspore/ops/operations/nn_ops.py +++ b/mindspore/ops/operations/nn_ops.py @@ -2030,7 +2030,7 @@ class OneHot(PrimitiveWithInfer): depth_val = depth['value'] validator.check_integer("depth", depth_val, 0, Rel.GE, self.name) # create new dimension at end if self.axis is -1 - indices_shp.insert(self.axis, depth_val) if self.axis >= 0 else indices_shp.append(depth_val) + _ = indices_shp.insert(self.axis, depth_val) if self.axis >= 0 else indices_shp.append(depth_val) return {'shape': indices_shp, 'dtype': on_value['dtype'], diff --git a/mindspore/train/summary/_event_writer.py b/mindspore/train/summary/_event_writer.py index 4c340d0caf..ae347135f6 100644 --- a/mindspore/train/summary/_event_writer.py +++ b/mindspore/train/summary/_event_writer.py @@ -38,6 +38,7 @@ class EventWriter(Process): def __init__(self, filepath: str, flush_interval: int) -> None: super().__init__() + _ = flush_interval with open(filepath, 'w'): os.chmod(filepath, stat.S_IWUSR | stat.S_IRUSR) self._writer = EventWriter_(filepath)