-
Notifications
You must be signed in to change notification settings - Fork 5.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
API Refactorization #1392
Comments
从semantic_role_labeling出发,写API训练,一些想到的问题: 网络配置
确实要包装成Python代码。 在 #1402 列了出具体要做的工作。除了上述工作,还有RNN layers相关的一些工作。 请 @jacquesqiao @luotao1 @gangliao @qingiqng 来分工。 训练
目前通过ParameterAttribute 来指定parameter的初始化方法。目前支持两种方法:Gaussian RNG 和 uniform distributed RNG。实际上有很多方法来初始化参数: http://stats.stackexchange.com/questions/47590/what-are-good-initial-weights-in-a-neural-network @reyoung @qingqing01
v2 API已经支持了——在创建trainer的时候指定。未来可能要支持per-layer的regularization。
@reyoung 会来写 paddle.test 和 paddle.infer 其他
按照训练topology=B_cost_layer即可,topology=[B_cost_layer, C_layer]吗? 否则的话testing如何拿到C_layer的输出?
|
在我脑海里,我理解你给出的例子可以这么描述: a_layer = paddle.layer.SomeLayer()
b_cost = paddle.layer.SomeCost(a_layer)
c_cost = paddle.layer.SomeOtherCost(a_layer)
parameters = paddle.parameters.create([b_cost, c_cost])
def event_handler(event):
if isinstande(event, paddle.event.EndIteration):
print paddle.test(c_cost,
parameters,
paddle.dataset.mnist.testing_data())
paddle.train(b_cost,
parameters,
paddle.dataset.mnist.training_data(),
event_handler) 请看这样可以吗? |
This issue has been done. |
* fix id in the last position * fix Co-authored-by: Guo Sheng <[email protected]> Co-authored-by: smallv0221 <[email protected]>
Layers: @jacquesqiao should be done in 2017-2-23
Data: should be done in 2017-2-27
- [20%]Data Package @wen-bo-yang @wangkuiyi- Data Package job in implement Dataset Reader in Paddle Book #1419
- SRL data should be done in 2017-2-23
[70%] paddle.data.caching @reyoungShould be done in 2017-2-23Activations should be done in 2017-2-23
- [100%] Paddle Docker CPU and GPUUpdate docker image's context #1443
Event: @reyoung should be done in 2017-2-23
[70%]Get Strong Typed Metric From
paddle::Evaluator
:[没开始]补全Event?
[调研]IPython 画图?
[没开始]其他的Demo?
The text was updated successfully, but these errors were encountered: