Browse Source

!1158 fix some pyling warnings

Merge pull request !1158 from SJN/master
tags/v0.3.0-alpha
mindspore-ci-bot Gitee 6 years ago
parent
commit
cca0610615
5 changed files with 7 additions and 1 deletions
  1. +2
    -0
      example/bert_clue/evaluation.py
  2. +2
    -0
      example/bert_clue/finetune.py
  3. +1
    -0
      mindspore/nn/layer/quant.py
  4. +1
    -1
      mindspore/ops/operations/nn_ops.py
  5. +1
    -0
      mindspore/train/summary/_event_writer.py

+ 2
- 0
example/bert_clue/evaluation.py View File

@@ -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)


+ 2
- 0
example/bert_clue/finetune.py View File

@@ -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)


+ 1
- 0
mindspore/nn/layer/quant.py View File

@@ -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,


+ 1
- 1
mindspore/ops/operations/nn_ops.py View File

@@ -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'],


+ 1
- 0
mindspore/train/summary/_event_writer.py View File

@@ -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)


Loading…
Cancel
Save