- 24 7月, 2017 1 次提交
-
-
由 Yu Yang 提交于
* Expose Net to Python * Expose PlainNet to Python, make python can add_op, complete_add_op * Provide a low level api to manipulate Net * Unittest for Net::DebugString
-
- 21 7月, 2017 2 次提交
-
-
由 qijun 提交于
-
由 Qiao Longfei 提交于
* add cross-entropy-op * add infershape and compute * implement Infershape and compute of onehotcrossentropy op
-
- 20 7月, 2017 2 次提交
- 19 7月, 2017 3 次提交
-
-
由 Qiao Longfei 提交于
* a simplest SGD op
-
由 xzl 提交于
-
由 wanghaoshuang 提交于
2. Add crop layer unitest 3. Fix bugs
-
- 18 7月, 2017 6 次提交
-
-
由 xzl 提交于
-
由 Yu Yang 提交于
-
由 Yu Yang 提交于
* Fc operator is a grouped operator, which combined by may internal operators. * InferShape & Run a FC operator in Python.
-
由 Yu Yang 提交于
* Follow review comments to seperate Tensor Numpy interactive methods in tensor.h. * Simplify logic for `CastToPyBufferImpl`, make it as one struct and in details namespace. * Remove `Scope` expose in Python, since it currently is useless. * Remove some debug functions.
-
由 wanghaoshuang 提交于
-
由 wanghaoshuang 提交于
-
- 17 7月, 2017 8 次提交
-
-
由 Yu Yang 提交于
Basically following http://pybind11.readthedocs.io/en/stable/advanced/pycpp/numpy.html * Use buffer protocol to return a view of Tensor. It can be cast to numpy array in Python. * Set a numpy array to a tensor.
-
由 caoying03 提交于
-
由 Yu Yang 提交于
-
由 Yancey 提交于
Fix fetch record from master
-
由 武毅 提交于
* using etcd as fault tolerant training * update * workable version, ft not tested * small fix * update * remove TODO
-
由 jc 提交于
-
由 jc 提交于
-
由 dongzhihong 提交于
-
- 15 7月, 2017 1 次提交
-
-
由 Yu Yang 提交于
All OpCreation method are generated by `create_op_creation_methods::__bootstrap__` method, and stores in `op_creations` object and its methods. There are three parts to implement this feature. 1. Get all registered `OpProto` from C++ side. It is implemented in `get_all_op_protos` method. 1. Create a function to convert `kwargs` to `OpDesc` base on each op's `OpProto`. The `OpDescCreationMethod` class. 1. Convert `OpProto` to `docstring` by `get_docstring_from_op_proto` method. All three methods are unit tested. The `__bootstrap__` just combines them together and create a method in runtime. For details, please reference the doc string in `create_op_creation_methods.py` and the unit test `test_op_creation_methods.py`.
-
- 14 7月, 2017 5 次提交
-
-
由 Yu Yang 提交于
-
由 caoying03 提交于
-
由 caoying03 提交于
-
由 Yu Yang 提交于
* PyBind and SWIG of paddle cannot be load in a single Python process, lazy import all SWIG library of Paddle. Otherwise, the glog, gflags are imported twice in a same Python process. * Note that all PyBind11 return C++ std::string as an unicode. For protobuf, it is need be cast to `str` before use them. * Add unit test for Get `OpProtos`
-
由 Yu Yang 提交于
-
- 13 7月, 2017 1 次提交
-
-
由 wanghaoshuang 提交于
-
- 12 7月, 2017 4 次提交
-
-
由 xzl 提交于
-
由 xzl 提交于
-
由 wanghaoshuang 提交于
-
由 wanghaoshuang 提交于
-
- 11 7月, 2017 4 次提交
-
-
由 Yu Yang 提交于
`Paddle` manages Scope as programming language's scope. It just a thread-local stack of Scope. Top of that stack is current scope, the bottom of that stack is all scopes' parent. Invoking `create_var/get_var` can `create/get` variable in current scope. Invoking `enter_local_scope/leave_local_scope` can create or destroy local scope. A `scoped_function` will take a `function` as input. That function will be invoked in a new local scope.
-
由 Yu Yang 提交于
* Expose paddle.framework by pybind11 * Export paddle.framework.{Scope, Variable} to paddle.v2.framework.core. * See python/paddle/v2/framework/tests/test_scope.py for Python usage * See paddle/pybind/pybind.cc for C++ bind code. * add copyright
-
由 Yu Yang 提交于
* Fix #2797 * It because trainer_config_helpers' __dfs_travel__ did not record the node which travelled, and if the topology has a recursive dependency, there are some nodes will be travelled multiple times. * Add a `travelled` set to record which node is travelled. * Also add a unittest for this situation.
-
由 wanghaoshuang 提交于
-
- 10 7月, 2017 2 次提交
-
-
由 caoying03 提交于
-
由 wanghaoshuang 提交于
-
- 07 7月, 2017 1 次提交
-
-
由 wuyi05 提交于
-