用法:
class mxnet.executor.Executor(handle, symbol, ctx, grad_req, group2ctx)
基礎:
object
Executor 是提供高效符號圖執行和優化的對象。
例子:
屬性
獲取參數數組的字典表示。
獲取輔助狀態數組的字典表示。
獲取梯度數組的字典表示。
獲取輸出數組的字典表示。
>>> # typical approach to create an executor is to bind symbol >>> a = mx.sym.Variable('a') >>> b = mx.sym.Variable('b') >>> c = 2 * a + b >>> texec = c.bind(mx.cpu(), {'a': mx.nd.array([1,2]), 'b':mx.nd.array([2,3])})
相關用法
- Python mxnet.executor.Executor.copy_params_from用法及代碼示例
- Python mxnet.executor.Executor.set_monitor_callback用法及代碼示例
- Python mxnet.executor.Executor.reshape用法及代碼示例
- Python mxnet.executor.Executor.debug_str用法及代碼示例
- Python mxnet.executor.Executor.backward用法及代碼示例
- Python mxnet.executor.Executor.forward用法及代碼示例
- Python mxnet.engine.bulk用法及代碼示例
- Python mxnet.symbol.op.broadcast_logical_xor用法及代碼示例
- Python mxnet.test_utils.get_zip_data用法及代碼示例
- Python mxnet.ndarray.op.uniform用法及代碼示例
- Python mxnet.symbol.op.log_softmax用法及代碼示例
- Python mxnet.symbol.space_to_depth用法及代碼示例
- Python mxnet.ndarray.op.sample_negative_binomial用法及代碼示例
- Python mxnet.ndarray.NDArray.ndim用法及代碼示例
- Python mxnet.module.BaseModule.get_outputs用法及代碼示例
- Python mxnet.module.BaseModule.forward用法及代碼示例
- Python mxnet.symbol.random_pdf_poisson用法及代碼示例
- Python mxnet.ndarray.op.khatri_rao用法及代碼示例
- Python mxnet.ndarray.op.unravel_index用法及代碼示例
- Python mxnet.symbol.argmin用法及代碼示例
注:本文由純淨天空篩選整理自apache.org大神的英文原創作品 mxnet.executor.Executor。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。