Skip to content

Commit

Permalink
train : change default FA argument (#7528)
Browse files Browse the repository at this point in the history
  • Loading branch information
ggerganov committed May 25, 2024
1 parent 3cbd23e commit 9588f19
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion common/train.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1052,7 +1052,7 @@ struct train_params_common get_default_train_params_common() {

params.custom_n_ctx = false;

params.use_flash = true;
params.use_flash = false;
params.use_checkpointing = true;

params.sample_start = "";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -774,7 +774,7 @@ static struct train_params get_default_train_params() {

params.samples_start_after_nl = false;
params.use_adam = true;
params.use_flash = true;
params.use_flash = false;
params.use_scratch = true;

// only adam
Expand Down

0 comments on commit 9588f19

Please sign in to comment.