用法:
mxnet.symbol.ceil(data=None, name=None, attr=None, out=None, **kwargs)
返回输入的元素上限。
标量 x 的 ceil 是最小整数 i,使得 i >= x。
例子:
ceil([-2.1, -1.9, 1.5, 1.9, 2.1]) = [-2., -1., 2., 2., 3.]
ceil
输出的存储类型取决于输入存储类型:ceil(default) = default
ceil(row_sparse) = row_sparse
ceil(csr) = csr
相关用法
- Python mxnet.symbol.contrib.dgl_graph_compact用法及代码示例
- Python mxnet.symbol.choose_element_0index用法及代码示例
- Python mxnet.symbol.contrib.rand_zipfian用法及代码示例
- Python mxnet.symbol.contrib.group_adagrad_update用法及代码示例
- Python mxnet.symbol.contrib.quadratic用法及代码示例
- Python mxnet.symbol.contrib.edge_id用法及代码示例
- Python mxnet.symbol.contrib.DeformableConvolution用法及代码示例
- Python mxnet.symbol.contrib.while_loop用法及代码示例
- Python mxnet.symbol.contrib.dgl_subgraph用法及代码示例
- Python mxnet.symbol.clip用法及代码示例
- Python mxnet.symbol.contrib.cond用法及代码示例
- Python mxnet.symbol.contrib.ifft用法及代码示例
- Python mxnet.symbol.cast_storage用法及代码示例
- Python mxnet.symbol.contrib.boolean_mask用法及代码示例
- Python mxnet.symbol.contrib.index_array用法及代码示例
- Python mxnet.symbol.contrib.fft用法及代码示例
- Python mxnet.symbol.contrib.allclose用法及代码示例
- Python mxnet.symbol.contrib.dgl_csr_neighbor_uniform_sample用法及代码示例
- Python mxnet.symbol.contrib.index_copy用法及代码示例
- Python mxnet.symbol.contrib.ModulatedDeformableConvolution用法及代码示例
注:本文由纯净天空筛选整理自apache.org大神的英文原创作品 mxnet.symbol.ceil。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。