From 3f83d0d593816c62153268bd7b5713fb2577b7dd Mon Sep 17 00:00:00 2001 From: Travis CI Date: Fri, 17 Mar 2017 10:44:05 +0000 Subject: [PATCH] Deploy to GitHub Pages: 2983939b00e517db991156d781ac41fbcbc0184c --- .../v1/trainer_config_helpers/layers.rst.txt | 18 ++- .../getstarted/basic_usage/index_en.rst.txt | 2 +- .../api/v1/trainer_config_helpers/layers.html | 114 +++++++++++++----- .../doc/getstarted/basic_usage/index_en.html | 2 +- develop/doc/searchindex.js | 2 +- .../doc/tutorials/rec/ml_regression_en.html | 5 +- .../v1/trainer_config_helpers/layers.rst.txt | 18 ++- .../getstarted/basic_usage/index_cn.rst.txt | 4 +- .../howto/usage/k8s/k8s_distributed_cn.md.txt | 2 +- .../api/v1/trainer_config_helpers/layers.html | 114 +++++++++++++----- .../getstarted/basic_usage/index_cn.html | 4 +- .../howto/usage/k8s/k8s_distributed_cn.html | 2 +- develop/doc_cn/searchindex.js | 2 +- .../tutorials/rec/ml_regression_cn.html | 5 +- 14 files changed, 200 insertions(+), 94 deletions(-) diff --git a/develop/doc/_sources/api/v1/trainer_config_helpers/layers.rst.txt b/develop/doc/_sources/api/v1/trainer_config_helpers/layers.rst.txt index bbea823de4..24389c2d85 100644 --- a/develop/doc/_sources/api/v1/trainer_config_helpers/layers.rst.txt +++ b/develop/doc/_sources/api/v1/trainer_config_helpers/layers.rst.txt @@ -432,6 +432,12 @@ multi_binary_label_cross_entropy :members: multi_binary_label_cross_entropy :noindex: +mse_cost +--------- +.. automodule:: paddle.trainer_config_helpers.layers + :members: mse_cost + :noindex: + huber_cost ---------- .. automodule:: paddle.trainer_config_helpers.layers @@ -450,6 +456,12 @@ rank_cost :members: rank_cost :noindex: +sum_cost +--------- +.. automodule:: paddle.trainer_config_helpers.layers + :members: sum_cost + :noindex: + crf_layer ----------------- .. automodule:: paddle.trainer_config_helpers.layers @@ -486,12 +498,6 @@ hsigmoid :members: hsigmoid :noindex: -sum_cost ---------- -.. automodule:: paddle.trainer_config_helpers.layers - :members: sum_cost - :noindex: - Check Layer ============ diff --git a/develop/doc/_sources/getstarted/basic_usage/index_en.rst.txt b/develop/doc/_sources/getstarted/basic_usage/index_en.rst.txt index c10b897d42..6775da20c2 100644 --- a/develop/doc/_sources/getstarted/basic_usage/index_en.rst.txt +++ b/develop/doc/_sources/getstarted/basic_usage/index_en.rst.txt @@ -49,7 +49,7 @@ To recover this relationship between ``X`` and ``Y``, we use a neural network wi x = data_layer(name='x', size=1) y = data_layer(name='y', size=1) y_predict = fc_layer(input=x, param_attr=ParamAttr(name='w'), size=1, act=LinearActivation(), bias_attr=ParamAttr(name='b')) - cost = regression_cost(input=y_predict, label=y) + cost = mse_cost(input=y_predict, label=y) outputs(cost) Some of the most fundamental usages of PaddlePaddle are demonstrated: diff --git a/develop/doc/api/v1/trainer_config_helpers/layers.html b/develop/doc/api/v1/trainer_config_helpers/layers.html index 7db4bdedb9..93a906915a 100644 --- a/develop/doc/api/v1/trainer_config_helpers/layers.html +++ b/develop/doc/api/v1/trainer_config_helpers/layers.html @@ -276,16 +276,17 @@
  • cross_entropy
  • cross_entropy_with_selfnorm
  • multi_binary_label_cross_entropy
  • +
  • mse_cost
  • huber_cost
  • lambda_cost
  • rank_cost
  • +
  • sum_cost
  • crf_layer
  • crf_decoding_layer
  • ctc_layer
  • warp_ctc_layer
  • nce_layer
  • hsigmoid
  • -
  • sum_cost
  • Check Layer
  • Check Layer