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.dataset.zip.rst 498 B

4 years ago
4 years ago
4 years ago
4 years ago
12345678910111213141516171819
  1. mindspore.dataset.zip
  2. =====================
  3. .. py:function:: mindspore.dataset.zip(datasets)
  4. 将多个dataset对象按列进行合并压缩。
  5. **参数:**
  6. - **datasets** (tuple[Dataset]) - 要合并的多个dataset对象。 `datasets` 参数的长度必须大于1。
  7. **返回:**
  8. ZipDataset,合并后的dataset对象。
  9. **异常:**
  10. - **ValueError** - `datasets` 参数的长度为1。
  11. - **TypeError** - datasets参数不是tuple。