You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

mindspore.nn.PipelineCell.rst 410 B

4 years ago
4 years ago
1234567891011121314
  1. mindspore.nn.PipelineCell
  2. =========================
  3. .. py:class:: mindspore.nn.PipelineCell(network, micro_size)
  4. 将MiniBatch切分成更细粒度的MicroBatch,用于流水线并行的训练中。
  5. .. note::
  6. micro_size必须大于或等于流水线stage的个数。
  7. **参数:**
  8. - **network** (Cell) - 要修饰的目标网络。
  9. - **micro_size** (int) - MicroBatch大小。