用法:
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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。