-
Notifications
You must be signed in to change notification settings - Fork 1
adding dropout-by row #8
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
base: dropout_schedule
Are you sure you want to change the base?
Changes from 3 commits
6548b55
23ae730
614a868
c1d1ad1
14662b6
1d22219
5b8b98b
4137c9d
d721e59
1e2adab
463a4dc
d0290c3
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -511,7 +511,7 @@ def _get_component_dropout(dropout_schedule, num_archives_processed): | |
| + initial_dropout) | ||
|
|
||
|
|
||
| def apply_dropout(dropout_proportions, raw_model_string): | ||
| def apply_dropout(dropout_proportions, dropout_per_frame, raw_model_string): | ||
| """Adds an nnet3-copy --edits line to modify raw_model_string to | ||
| set dropout proportions according to dropout_proportions. | ||
|
|
||
|
|
@@ -523,10 +523,10 @@ def apply_dropout(dropout_proportions, raw_model_string): | |
|
|
||
| for component_name, dropout_proportion in dropout_proportions: | ||
| edit_config_lines.append( | ||
| "set-dropout-proportion name={0} proportion={1}".format( | ||
| component_name, dropout_proportion)) | ||
| dropout_info.append("pattern/dropout-proportion={0}/{1}".format( | ||
| component_name, dropout_proportion)) | ||
| "set-dropout-proportion name={0} proportion={1} dropout-per-frame={2}".format( | ||
| component_name, dropout_proportion, dropout_per_frame)) | ||
| dropout_info.append("pattern/dropout-proportion={0}/{1} dropout-per-frame={2}".format( | ||
| component_name, dropout_proportion, dropout_per_frame)) | ||
|
|
||
| return ("""{raw_model_string} nnet3-copy --edits='{edits}' \ | ||
| - - |""".format(raw_model_string=raw_model_string, | ||
|
|
@@ -771,6 +771,11 @@ def __init__(self): | |
| lstm*=0,0.2,0'. More general should precede | ||
| less general patterns, as they are applied | ||
| sequentially.""") | ||
| self.parser.add_argument("--trainer.dropout-per-frame", type=str, | ||
|
||
| action=common_lib.NullstrToNoneAction, | ||
| dest='dropout_per_frame', default=None, | ||
| help="""this option is used to control whether | ||
| using dropout by frame level or by vector level""") | ||
|
|
||
| # General options | ||
| self.parser.add_argument("--stage", type=int, default=-4, | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -64,6 +64,7 @@ void cudaF_apply_pow(dim3 Gr, dim3 Bl, float* mat, float power, MatrixDim d); | |
| void cudaF_apply_pow_abs(dim3 Gr, dim3 Bl, float* mat, float power, | ||
| bool include_sign, MatrixDim d); | ||
| void cudaF_apply_heaviside(dim3 Gr, dim3 Bl, float* mat, MatrixDim d); | ||
| void cudaF_apply_heaviside_by_row(dim3 Gr, dim3 Bl, float* mat, MatrixDim d); | ||
|
||
| void cudaF_apply_floor(dim3 Gr, dim3 Bl, float* mat, float floor_val, | ||
| MatrixDim d); | ||
| void cudaF_copy_cols(dim3 Gr, dim3 Bl, float* dst, const float* src, | ||
|
|
@@ -330,6 +331,7 @@ void cudaD_apply_pow(dim3 Gr, dim3 Bl, double* mat, double power, MatrixDim d); | |
| void cudaD_apply_pow_abs(dim3 Gr, dim3 Bl, double* mat, double power, | ||
| bool include_sign, MatrixDim d); | ||
| void cudaD_apply_heaviside(dim3 Gr, dim3 Bl, double* mat, MatrixDim d); | ||
| void cudaD_apply_heaviside_by_row(dim3 Gr, dim3 Bl, double* mat, MatrixDim d); | ||
| void cudaD_apply_floor(dim3 Gr, dim3 Bl, double* mat, double floor_val, | ||
| MatrixDim d); | ||
| void cudaD_copy_cols(dim3 Gr, dim3 Bl, double* dst, const double* src, | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -1628,6 +1628,23 @@ static void _apply_heaviside(Real* mat, MatrixDim d) { | |
| mat[index] = (mat[index] > 0.0 ? 1.0 : 0.0); | ||
| } | ||
|
|
||
| template<typename Real> | ||
| __global__ | ||
| static void _apply_heaviside_by_row(Real* mat, MatrixDim d) { | ||
| int i = blockIdx.x * blockDim.x + threadIdx.x; // col index | ||
| int j = blockIdx.y * blockDim.y + threadIdx.y; // row index | ||
| int j_tempt = blockIdx.y * blockDim.y + threadIdx.y; // row index using to control setting heavyside() in the first rows | ||
|
||
| int index = i + j * d.stride; | ||
| if (i < d.cols && j < d.rows) | ||
| if (j = j_tempt) { | ||
|
||
| mat[index] = (mat[index] > 0.0 ? 1.0 : 0.0); | ||
| } | ||
| else { | ||
| mat[index] = mat[index-d.stride-d.cols]; | ||
| } | ||
| } | ||
|
|
||
|
||
|
|
||
| template<typename Real> | ||
| __global__ | ||
| static void _apply_floor(Real* mat, Real floor_val, MatrixDim d) { | ||
|
|
@@ -3233,6 +3250,10 @@ void cudaF_apply_heaviside(dim3 Gr, dim3 Bl, float* mat, MatrixDim d) { | |
| _apply_heaviside<<<Gr,Bl>>>(mat, d); | ||
| } | ||
|
|
||
| void cudaF_apply_heaviside_by_row(dim3 Gr, dim3 Bl, float* mat, MatrixDim d) { | ||
| _apply_heaviside_by_row<<<Gr,Bl>>>(mat, d); | ||
| } | ||
|
|
||
| void cudaF_copy_cols(dim3 Gr, dim3 Bl, float* dst, const float* src, | ||
| const MatrixIndexT_cuda* reorder, MatrixDim dst_dim, | ||
| int src_stride) { | ||
|
|
@@ -3880,6 +3901,10 @@ void cudaD_apply_heaviside(dim3 Gr, dim3 Bl, double* mat, MatrixDim d) { | |
| _apply_heaviside<<<Gr,Bl>>>(mat, d); | ||
| } | ||
|
|
||
| void cudaD_apply_heaviside_by_row(dim3 Gr, dim3 Bl, double* mat, MatrixDim d) { | ||
| _apply_heaviside_by_row<<<Gr,Bl>>>(mat, d); | ||
| } | ||
|
|
||
| void cudaD_copy_cols(dim3 Gr, dim3 Bl, double* dst, const double* src, | ||
| const MatrixIndexT_cuda* reorder, MatrixDim dst_dim, | ||
| int src_stride) { | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -108,9 +108,7 @@ void DropoutComponent::InitFromConfig(ConfigLine *cfl) { | |
| { | ||
|
||
| dropout_per_frame = false; | ||
| Init(dim, dropout_proportion, dropout_per_frame); | ||
| } | ||
| else | ||
| { | ||
| } else { | ||
| Init(dim, dropout_proportion, dropout_per_frame); | ||
| } | ||
| } | ||
|
|
@@ -131,7 +129,7 @@ void DropoutComponent::Propagate(const ComponentPrecomputedIndexes *indexes, | |
|
|
||
| BaseFloat dropout = dropout_proportion_; | ||
| KALDI_ASSERT(dropout >= 0.0 && dropout <= 1.0); | ||
| if(dropout_per_frame_ == true) | ||
| if(dropout_per_frame_) | ||
|
||
| { | ||
| // This const_cast is only safe assuming you don't attempt | ||
| // to use multi-threaded code with the GPU. | ||
|
|
@@ -142,23 +140,14 @@ void DropoutComponent::Propagate(const ComponentPrecomputedIndexes *indexes, | |
| // be zero and (1 - dropout) will be 1.0. | ||
|
|
||
| out->MulElements(in); | ||
| } | ||
| else | ||
| { | ||
| } else { | ||
|
|
||
| // This const_cast is only safe assuming you don't attempt | ||
| // to use multi-threaded code with the GPU. | ||
| const_cast<CuRand<BaseFloat>&>(random_generator_).RandUniform(out); | ||
| out->Add(-dropout); // now, a proportion "dropout" will be <0.0 | ||
| out->ApplyHeaviside(); // apply the function (x>0?1:0). Now, a proportion "dropout" will | ||
| // be zero and (1 - dropout) will be 1.0. | ||
| CuVector<BaseFloat> *random_drop_vector = new CuVector<BaseFloat>(in.NumRows(), kSetZero); | ||
| MatrixIndexT i = 0; | ||
| random_drop_vector->CopyColFromMat(*out, i); | ||
| for (MatrixIndexT i = 0; i < in.NumCols(); i++) | ||
| { | ||
| out->CopyColFromVec(*random_drop_vector, i); | ||
| } | ||
| out->ApplyHeavisideByRow(); // apply the function (x>0?1:0). Now, a proportion "dropout" will | ||
| // be zero and (1 - dropout) will be 1.0 by row. | ||
| out->MulElements(in); | ||
| } | ||
| } | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -524,7 +524,7 @@ std::string NnetInfo(const Nnet &nnet) { | |
| } | ||
|
|
||
| void SetDropoutProportion(BaseFloat dropout_proportion, | ||
| bool dropout_per_frame , | ||
| bool dropout_per_frame, | ||
| Nnet *nnet) { | ||
| dropout_per_frame = false; | ||
|
||
| for (int32 c = 0; c < nnet->NumComponents(); c++) { | ||
|
|
@@ -696,13 +696,13 @@ void ReadEditConfig(std::istream &edit_config_is, Nnet *nnet) { | |
| // matches names of components, not nodes. | ||
| config_line.GetValue("name", &name_pattern); | ||
| BaseFloat proportion = -1; | ||
| bool perframe = false; | ||
| bool dropout_per_frame = false; | ||
| if (!config_line.GetValue("proportion", &proportion)) { | ||
| KALDI_ERR << "In edits-config, expected proportion to be set in line: " | ||
| << config_line.WholeLine(); | ||
| } | ||
| if (!config_line.GetValue("perframe", &perframe)) { | ||
| perframe = false; | ||
| if (!config_line.GetValue("dropout-per-frame", &dropout_per_frame)) { | ||
| dropout_per_frame = false; | ||
| } | ||
| DropoutComponent *component = NULL; | ||
| int32 num_dropout_proportions_set = 0; | ||
|
|
@@ -711,7 +711,7 @@ void ReadEditConfig(std::istream &edit_config_is, Nnet *nnet) { | |
| name_pattern.c_str()) && | ||
| (component = | ||
| dynamic_cast<DropoutComponent*>(nnet->GetComponent(c)))) { | ||
| component->SetDropoutProportion(proportion, perframe); | ||
| component->SetDropoutProportion(proportion, dropout_per_frame); | ||
| num_dropout_proportions_set++; | ||
| } | ||
| } | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
as Vimal says, please remove this from the training code... does not need to be there.