You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@singa.apache.org by "wangwei (JIRA)" <ji...@apache.org> on 2015/10/04 08:08:26 UTC

[jira] [Comment Edited] (SINGA-81) Helper API, which enables users to construct JobProto in C++ and by Python binding

    [ https://issues.apache.org/jira/browse/SINGA-81?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14942566#comment-14942566 ] 

wangwei edited comment on SINGA-81 at 10/4/15 6:07 AM:
-------------------------------------------------------

For (1)b, users have to create a new class to override the **Construct** function. It makes the process more complex. Hence, I think (1)a would be better.

If you use Boost to implement Builder::AddLayer(LayerType...), then you have to declare this function with a long list of arguments. It may be better to create an individual helper function for each layer, e.g., 
{code}
class InnerProductLayer : public Layer {
 public:
  static LayerProto Config(...);
}
{code}

With the above layer configuration methods, we can then configure layers of a whole (or partial) model together like Chonho has shown in the example for MLP.


was (Author: wangwei.cs):
For (1)b, users have to create a new class to override the **Construct** function. It makes the process more complex. Hence, I think (1)a would be better.

If you use Boost to implement Builder::AddLayer(LayerType...), then you have to declare this function with a long list of arguments. It may be better to create an individual helper function for each layer, e.g., 
{code}
class InnerProductLayer : public Layer {
 public:
  static LayerProto Config(...);
}


With the above layer configuration methods, we can then configure layers of a whole (or partial) model together like Chonho has shown in the example for MLP.

> Helper API, which enables users to construct JobProto in C++ and by Python binding
> ----------------------------------------------------------------------------------
>
>                 Key: SINGA-81
>                 URL: https://issues.apache.org/jira/browse/SINGA-81
>             Project: Singa
>          Issue Type: New Feature
>            Reporter: Lee Chonho
>
> Proposed design v1
> - (1) have a class named Builder
> - (2) use Boost::parameter library (+ associated necessary header files)
> (1)
> Builder class implements api-like functions to configure JobProto including NetProto (LayerProto), ClusterProto, UpdaterProto, etc.
> Two options
> a. users call Builder's functions in main.cc like
> {code}
> JobProto jobproto;
> Builder builder( &jobproto, "job name" );
> builder.xxx(xxx)  // add data layer
> builder.xxx(xxx)  // add parser layer
> ... etc. ...
> {code}
> b. we set main.cc like below and users call Builders functions in Construct() 
> {code}
> JobProto jobproto;
> Builder builder( &jobproto, "model name" );
> builder.Construct()
> {code}
> (2)
> Planning to use header-only files from Boost library
> - if the necessary files are small enough
> - because we can use "named arguments" feature with no restriction of # of arguments, order, types.
> - because function will be intuitive, and adding users' own proto in a straightforward way.
> Example is here. http://theboostcpplibraries.com/boost.parameter
> By following the example, we can do like
> {code}
> BOOST_PARAMETER_MEMBER_FUNCTION(   
>  (char*), AddLayerData,   tag,   
>  (required     
>    (type, (int))  (name, (char*))  (src, (char*))
>  ) 
>  (optional     
>    (path, (char*), *) (bsize (int) *)
>  ) )
>  {
>     ...  // set values
>     return name;
>  }
> {code}
> Then, users can add a datalayer by
> {code}
> L1 = builder.AddLayerData(kShardData, "data", null, _path="train_shard", _bsize=1000);
> {code}
> (TODO)
> - make use of google protobuf reflection for efficient parameter setting
> - need to avoid multiple calls for adding same/similar layers
> Any suggestion, design idea, comments please.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)