當前位置: 首頁>>代碼示例>>Python>>正文


Python base_module._parse_data_desc方法代碼示例

本文整理匯總了Python中mxnet.module.base_module._parse_data_desc方法的典型用法代碼示例。如果您正苦於以下問題:Python base_module._parse_data_desc方法的具體用法?Python base_module._parse_data_desc怎麽用?Python base_module._parse_data_desc使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在mxnet.module.base_module的用法示例。


在下文中一共展示了base_module._parse_data_desc方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: reshape

# 需要導入模塊: from mxnet.module import base_module [as 別名]
# 或者: from mxnet.module.base_module import _parse_data_desc [as 別名]
def reshape(self, data_shapes, label_shapes=None):
        """Reshape the module for new input shapes.

        Parameters
        ----------
        data_shapes : list of (str, tuple)
            Typically is `data_iter.provide_data`.
        label_shapes : list of (str, tuple)
            Typically is `data_iter.provide_label`.
        """
        assert self.binded
        # self._data_shapes, self._label_shapes = _parse_data_desc(
        #     self.data_names, self.label_names, data_shapes, label_shapes)
        self._data_shapes, self._label_shapes = zip(*[_parse_data_desc(self.data_names, self.label_names, data_shape, label_shape)
                                                      for data_shape, label_shape in zip(data_shapes, label_shapes)])

        self._exec_group.reshape(self._data_shapes, self._label_shapes) 
開發者ID:tonysy,項目名稱:Deep-Feature-Flow-Segmentation,代碼行數:19,代碼來源:module.py

示例2: reshape

# 需要導入模塊: from mxnet.module import base_module [as 別名]
# 或者: from mxnet.module.base_module import _parse_data_desc [as 別名]
def reshape(self, data_shapes, label_shapes=None):
        """Reshape the module for new input shapes.

        Parameters
        ----------
        data_shapes : list of (str, tuple)
            Typically is `data_iter.provide_data`.
        label_shapes : list of (str, tuple)
            Typically is `data_iter.provide_label`.
        """
        assert self.binded
        # self._data_shapes, self._label_shapes = _parse_data_desc(
        #     self.data_names, self.label_names, data_shapes, label_shapes)
        self._data_shapes, self._label_shapes = zip(
            *[
                _parse_data_desc(self.data_names, self.label_names, data_shape, label_shape)
                for data_shape, label_shape in zip(data_shapes, label_shapes)
            ]
        )

        self._exec_group.reshape(self._data_shapes, self._label_shapes) 
開發者ID:liyi14,項目名稱:mx-DeepIM,代碼行數:23,代碼來源:module.py

示例3: reshape

# 需要導入模塊: from mxnet.module import base_module [as 別名]
# 或者: from mxnet.module.base_module import _parse_data_desc [as 別名]
def reshape(self, data_shapes, label_shapes=None):
        """Reshapes the module for new input shapes.

        Parameters
        ----------
        data_shapes : list of (str, tuple)
            Typically is ``data_iter.provide_data``.
        label_shapes : list of (str, tuple)
            Typically is ``data_iter.provide_label``.
        """
        assert self.binded
        self._data_shapes, self._label_shapes = _parse_data_desc(
            self.data_names, self.label_names, data_shapes, label_shapes)

        self._exec_group.reshape(self._data_shapes, self._label_shapes) 
開發者ID:TuSimple,項目名稱:simpledet,代碼行數:17,代碼來源:detection_module.py


注:本文中的mxnet.module.base_module._parse_data_desc方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。