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 465 B

4 years ago
4 years ago
4 years ago
4 years ago
12345678910111213141516
  1. .. py:function:: mindspore.dataset.zip(datasets)
  2. 将多个dataset对象按列进行合并压缩。
  3. **参数:**
  4. - **datasets** (tuple of class Dataset) - 输入元组格式的多个dataset对象。 `datasets` 参数的长度必须大于1。
  5. **返回:**
  6. ZipDataset,合并后的dataset对象。
  7. **异常:**
  8. - **ValueError** - datasets参数的长度为1。
  9. - **TypeError** - datasets参数不是元组。