Skip to content

Commit

Permalink
ADD:feature transform config comment
Browse files Browse the repository at this point in the history
  • Loading branch information
scharoun committed Jun 13, 2017
1 parent 51eef9c commit 60c1407
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 1 deletion.
2 changes: 2 additions & 0 deletions docs/ffm.config.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,8 @@ feature {
# preprocessing feature value
# many learning algorithms(e.g. l1, l2 regularization) assume that features are centered around zero and have variance in the same order
# if you use feature transform, a file record statistical information while locates at "model.data_path" + "_feature_transform_stat" and
# will be used in offline or online prediction.
transform {
# feature value
switch_on : false,
Expand Down
4 changes: 3 additions & 1 deletion docs/fm.config.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ data {

# whether your train/test data is assigned. See "Train/Test Data Splitting Manner" in running_guide.md for more details on train/test data assignment method
assigned : false,
# if your train/test data is not assigned, we provide the following two ways for slaves to read files:
# if your train/test data is not assigned, we provide the following two ways for slaves to read files:
# lines_avg : different slaves read different lines of same file alternative. If you have a few train/test files and more than one slave, we recommend this manner
# files_avg : different slaves read different files, if your files outnumber slaves, and the number of samples in each file is similar, we recommend this manner
unassigned_mode : "lines_avg" // "files_avg"
Expand All @@ -87,6 +87,8 @@ feature {

# preprocessing feature value
# many learning algorithm(e.g. l1, l2 regularization) assume that features are centered around zero and have variance in the same order
# if you use feature transform, a file record statistical information while locates at "model.data_path" + "_feature_transform_stat" and
# will be used in offline or online prediction.
transform {
# feature value
switch_on : false,
Expand Down
2 changes: 2 additions & 0 deletions docs/gbmlr.config.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,8 @@ feature {
# preprocessing feature value
# many learning algorithm(e.g. l1, l2 regularization) assume that features are centered around zero and have variance in the same order
# if you use feature transform, a file record statistical information while locates at "model.data_path" + "_feature_transform_stat" and
# will be used in offline or online prediction.
transform {
# feature value
switch_on : false,
Expand Down
2 changes: 2 additions & 0 deletions docs/gbsdt.config.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,8 @@ feature {
# preprocessing feature value
# many learning algorithm(e.g. l1, l2 regularization) assume that features are centered around zero and have variance in the same order
# if you use feature transform, a file record statistical information while locates at "model.data_path" + "_feature_transform_stat" and
# will be used in offline or online prediction.
transform {
# feature value
switch_on : false,
Expand Down
2 changes: 2 additions & 0 deletions docs/linear.config.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,8 @@ feature {
# preprocessing feature value
# many learning algorithms(e.g. l1, l2 regularization) assume that features are centered around zero and have variance in the same order
# if you use feature transform, a file record statistical information while locates at "model.data_path" + "_feature_transform_stat" and
# will be used in offline or online prediction.
transform {
# feature value
switch_on : false,
Expand Down
2 changes: 2 additions & 0 deletions docs/multiclass_linear.config.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,8 @@ feature {
# preprocessing feature value
# many learning algorithms(e.g. l1, l2 regularization) assume that features are centered around zero and have variance in the same order
# if you use feature transform, a file record statistical information while locates at "model.data_path" + "_feature_transform_stat" and
# will be used in offline or online prediction.
transform {
# feature value
switch_on : false,
Expand Down

0 comments on commit 60c1407

Please sign in to comment.