mirror of https://github.com/google/gemma.cpp.git
Added a missing space in app.h
When the user runs "--help", they see the non-existent word "compressingnew". This is because of a missing space, which is now added, resulting in "compressing new".
This commit is contained in:
parent
720f609d84
commit
546519c855
|
|
@ -199,7 +199,7 @@ struct LoaderArgs : public ArgsBase<LoaderArgs> {
|
||||||
visitor(weights, "weights", Path(),
|
visitor(weights, "weights", Path(),
|
||||||
"Path name of model weights (.sbs) file. Only required if "
|
"Path name of model weights (.sbs) file. Only required if "
|
||||||
"compressed_weights file is not present and needs to be "
|
"compressed_weights file is not present and needs to be "
|
||||||
"regenerated. This parameter is only required for compressing"
|
"regenerated. This parameter is only required for compressing "
|
||||||
"new model weight exports, otherwise it is not needed.");
|
"new model weight exports, otherwise it is not needed.");
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue