cleanup and stuff

This commit is contained in:
Henri Vasserman 2023-05-16 15:16:00 +03:00
parent 021e6d9944
commit 8388aaa604
No known key found for this signature in database
GPG key ID: 2995FC0F58B1A986
4 changed files with 48 additions and 37 deletions

View file

@ -73,10 +73,10 @@ struct gpt_params {
bool mem_test = false; // compute maximum memory usage
bool verbose_prompt = false; // print prompt tokens before generation
std::string steering_add = "";
std::string steering_sub = "";
std::string steering_add;
std::string steering_sub;
float steering_mul = 1.0f;
int steering_lyr = 20;
int steering_layer = 15;
};
bool gpt_params_parse(int argc, char ** argv, gpt_params & params);