1
0

minicpmv-cli.cpp 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329
  1. #include "ggml.h"
  2. #include "log.h"
  3. #include "common.h"
  4. #include "clip.h"
  5. #include "llava.h"
  6. #include "llama.h"
  7. #include <cstdio>
  8. #include <cstdlib>
  9. #include <vector>
  10. struct llava_context {
  11. struct clip_ctx * ctx_clip = NULL;
  12. struct llama_context * ctx_llama = NULL;
  13. struct llama_model * model = NULL;
  14. };
  15. static void show_additional_info(int /*argc*/, char ** argv) {
  16. LOG_TEE("\n example usage: %s -m <llava-v1.5-7b/ggml-model-q5_k.gguf> --mmproj <llava-v1.5-7b/mmproj-model-f16.gguf> --image <path/to/an/image.jpg> --image <path/to/another/image.jpg> [--temp 0.1] [-p \"describe the image in detail.\"]\n", argv[0]);
  17. LOG_TEE(" note: a lower temperature value like 0.1 is recommended for better quality.\n");
  18. }
  19. static void llama_log_callback_logTee(ggml_log_level level, const char * text, void * user_data) {
  20. (void) level;
  21. (void) user_data;
  22. LOG_TEE("%s", text);
  23. }
  24. static struct llama_model * llava_init(gpt_params * params) {
  25. llama_backend_init();
  26. llama_numa_init(params->numa);
  27. llama_model_params model_params = llama_model_params_from_gpt_params(*params);
  28. llama_model * model = llama_load_model_from_file(params->model.c_str(), model_params);
  29. if (model == NULL) {
  30. LOG_TEE("%s: error: unable to load model\n" , __func__);
  31. return NULL;
  32. }
  33. return model;
  34. }
  35. static struct llava_context * llava_init_context(gpt_params * params, llama_model * model) {
  36. auto prompt = params->prompt;
  37. if (prompt.empty()) {
  38. prompt = "describe the image in detail.";
  39. }
  40. llama_context_params ctx_params = llama_context_params_from_gpt_params(*params);
  41. if (params->n_ctx < 2048) {
  42. // warn user here, "Image processing requires at least 2048 context, setting context to 2048"
  43. LOG_TEE("%s: warn: Image processing requires at least 2048 context, setting context to 2048\n" , __func__);
  44. ctx_params.n_ctx = 2048;
  45. } else {
  46. ctx_params.n_ctx = params->n_ctx;
  47. }
  48. llama_context * ctx_llama = llama_new_context_with_model(model, ctx_params);
  49. if (ctx_llama == NULL) {
  50. LOG_TEE("%s: error: failed to create the llama_context\n" , __func__);
  51. return NULL;
  52. }
  53. auto ctx_llava = (struct llava_context *)malloc(sizeof(llava_context));
  54. ctx_llava->ctx_llama = ctx_llama;
  55. ctx_llava->model = model;
  56. return ctx_llava;
  57. }
  58. static void llava_free(struct llava_context * ctx_llava) {
  59. if (ctx_llava->ctx_clip) {
  60. clip_free(ctx_llava->ctx_clip);
  61. ctx_llava->ctx_clip = NULL;
  62. }
  63. llama_free(ctx_llava->ctx_llama);
  64. llama_free_model(ctx_llava->model);
  65. llama_backend_free();
  66. }
  67. static struct clip_ctx * clip_init_context(gpt_params * params) {
  68. const char * clip_path = params->mmproj.c_str();
  69. auto prompt = params->prompt;
  70. if (prompt.empty()) {
  71. prompt = "describe the image in detail.";
  72. }
  73. auto ctx_clip = clip_model_load(clip_path, /*verbosity=*/ 1);
  74. return ctx_clip;
  75. }
  76. static bool eval_tokens(struct llama_context * ctx_llama, std::vector<llama_token> tokens, int n_batch, int * n_past) {
  77. int N = (int) tokens.size();
  78. for (int i = 0; i < N; i += n_batch) {
  79. int n_eval = (int) tokens.size() - i;
  80. if (n_eval > n_batch) {
  81. n_eval = n_batch;
  82. }
  83. if (llama_decode(ctx_llama, llama_batch_get_one(&tokens[i], n_eval, *n_past, 0))) {
  84. LOG_TEE("%s : failed to eval. token %d/%d (batch size %d, n_past %d)\n", __func__, i, N, n_batch, *n_past);
  85. return false;
  86. }
  87. *n_past += n_eval;
  88. }
  89. return true;
  90. }
  91. static bool eval_id(struct llama_context * ctx_llama, int id, int * n_past) {
  92. std::vector<llama_token> tokens;
  93. tokens.push_back(id);
  94. return eval_tokens(ctx_llama, tokens, 1, n_past);
  95. }
  96. static bool eval_string(struct llama_context * ctx_llama, const char* str, int n_batch, int * n_past, bool add_bos){
  97. std::string str2 = str;
  98. std::vector<llama_token> embd_inp = ::llama_tokenize(ctx_llama, str2, add_bos, true);
  99. return eval_tokens(ctx_llama, embd_inp, n_batch, n_past);
  100. }
  101. static void process_eval_image_embed(struct llava_context * ctx_llava, const struct llava_image_embed * embeds, int n_batch, int * n_past, int idx) {
  102. float * image_embed = (float *)malloc(clip_embd_nbytes(ctx_llava->ctx_clip));
  103. std::memcpy(image_embed, embeds->embed + idx * clip_n_patches(ctx_llava->ctx_clip) * clip_n_mmproj_embd(ctx_llava->ctx_clip), clip_embd_nbytes(ctx_llava->ctx_clip));
  104. auto slice_embed = (llava_image_embed*)malloc(sizeof(llava_image_embed));
  105. slice_embed->embed = image_embed;
  106. slice_embed->n_image_pos = clip_n_patches(ctx_llava->ctx_clip);
  107. llava_eval_image_embed(ctx_llava->ctx_llama, slice_embed, n_batch, n_past);
  108. llava_image_embed_free(slice_embed);
  109. }
  110. static void process_image(struct llava_context * ctx_llava, struct llava_image_embed * embeds, gpt_params * params, int &n_past) {
  111. std::string system_prompt;
  112. int idx = 0;
  113. int num_image_embeds = embeds->n_image_pos / clip_n_patches(ctx_llava->ctx_clip);
  114. int has_minicpmv_projector = clip_is_minicpmv(ctx_llava->ctx_clip);
  115. if (has_minicpmv_projector == 2) {
  116. system_prompt = "<|begin_of_text|><|start_header_id|>user<|end_header_id|>\n\n";
  117. }
  118. else if (has_minicpmv_projector == 3) {
  119. system_prompt = "<|im_start|>user\n";
  120. }
  121. LOG_TEE("%s: image token past: %d\n", __func__, n_past);
  122. eval_string(ctx_llava->ctx_llama, (system_prompt+"<image>").c_str(), params->n_batch, &n_past, false);
  123. process_eval_image_embed(ctx_llava, embeds, params->n_batch, &n_past, idx++);
  124. eval_string(ctx_llava->ctx_llama, std::string("</image>").c_str(), params->n_batch, &n_past, false);
  125. if (num_image_embeds > 1) {
  126. size_t num_image_embeds_col = clip_uhd_num_image_embeds_col(ctx_llava->ctx_clip);
  127. eval_string(ctx_llava->ctx_llama, std::string("<slice>").c_str(), params->n_batch, &n_past, false);
  128. for (size_t i = 0; i < (num_image_embeds-1)/num_image_embeds_col; ++i) {
  129. for (size_t j = 0; j < num_image_embeds_col; ++j) {
  130. eval_string(ctx_llava->ctx_llama, std::string("<image>").c_str(), params->n_batch, &n_past, false);
  131. process_eval_image_embed(ctx_llava, embeds, params->n_batch, &n_past, idx++);
  132. eval_string(ctx_llava->ctx_llama, std::string("</image>").c_str(), params->n_batch, &n_past, false);
  133. if (j == num_image_embeds_col - 1) {
  134. eval_string(ctx_llava->ctx_llama, std::string("\n").c_str(), params->n_batch, &n_past, false);
  135. }
  136. }
  137. }
  138. eval_string(ctx_llava->ctx_llama, std::string("</slice>").c_str(), params->n_batch, &n_past, false);
  139. }
  140. LOG_TEE("%s: image token past: %d\n", __func__, n_past);
  141. }
  142. static const char * sample(struct gpt_sampler * smpl,
  143. struct llama_context * ctx_llama,
  144. int * n_past) {
  145. const llama_token id = gpt_sampler_sample(smpl, ctx_llama, -1);
  146. gpt_sampler_accept(smpl, id, true);
  147. static std::string ret;
  148. if (llama_token_is_eog(llama_get_model(ctx_llama), id)) {
  149. ret = "</s>";
  150. } else {
  151. ret = llama_token_to_piece(ctx_llama, id);
  152. }
  153. eval_id(ctx_llama, id, n_past);
  154. return ret.c_str();
  155. }
  156. static struct llava_context * minicpmv_init(gpt_params * params, const std::string & fname, int &n_past){
  157. auto ctx_clip = clip_init_context(params);
  158. auto embeds = llava_image_embed_make_with_filename(ctx_clip, params->cpuparams.n_threads, fname.c_str());
  159. if (!embeds) {
  160. std::cerr << "error: failed to load image " << fname << ". Terminating\n\n";
  161. return NULL;
  162. }
  163. // process the prompt
  164. if (params->prompt.empty() && params->interactive == false) {
  165. LOG_TEE("prompt should be given or interactive mode should be on");
  166. return NULL;
  167. }
  168. auto model = llava_init(params);
  169. if (model == NULL) {
  170. fprintf(stderr, "%s: error: failed to init minicpmv model\n", __func__);
  171. return NULL;
  172. }
  173. const int64_t t_llava_init_start_us = ggml_time_us();
  174. auto ctx_llava = llava_init_context(params, model);
  175. ctx_llava->ctx_clip = ctx_clip;
  176. const int64_t t_llava_init_end_us = ggml_time_us();
  177. float t_llava_init_ms = (t_llava_init_end_us - t_llava_init_start_us) / 1000.0;
  178. LOG_TEE("\n%s: llava init in %8.2f ms.\n", __func__, t_llava_init_ms);
  179. const int64_t t_process_image_start_us = ggml_time_us();
  180. process_image(ctx_llava, embeds, params, n_past);
  181. const int64_t t_process_image_end_us = ggml_time_us();
  182. float t_process_image_ms = (t_process_image_end_us - t_process_image_start_us) / 1000.0;
  183. LOG_TEE("\n%s: llama process image in %8.2f ms.\n", __func__, t_process_image_ms);
  184. llava_image_embed_free(embeds);
  185. return ctx_llava;
  186. }
  187. static struct gpt_sampler * llama_init(struct llava_context * ctx_llava, gpt_params * params, std::string prompt, int &n_past, bool is_first = false){
  188. std::string user_prompt = prompt;
  189. int has_minicpmv_projector = clip_is_minicpmv(ctx_llava->ctx_clip);
  190. if (!is_first) {
  191. if (has_minicpmv_projector == 2) {
  192. user_prompt = "<|begin_of_text|><|start_header_id|>user<|end_header_id|>\n\n" + prompt;
  193. }
  194. else if (has_minicpmv_projector == 3) {
  195. user_prompt = "<|im_start|>user\n" + prompt;
  196. }
  197. }
  198. eval_string(ctx_llava->ctx_llama, user_prompt.c_str(), params->n_batch, &n_past, false);
  199. if (has_minicpmv_projector == 2) {
  200. eval_string(ctx_llava->ctx_llama, "<|eot_id|><|start_header_id|>assistant<|end_header_id|>\n\n", params->n_batch, &n_past, false);
  201. }
  202. else if (has_minicpmv_projector == 3) {
  203. eval_string(ctx_llava->ctx_llama, "<|im_end|><|im_start|>assistant\n", params->n_batch, &n_past, false);
  204. }
  205. // generate the response
  206. LOG_TEE("\n");
  207. struct gpt_sampler * smpl = gpt_sampler_init(ctx_llava->model, params->sparams);
  208. return smpl;
  209. }
  210. static const char * llama_loop(struct llava_context * ctx_llava,struct gpt_sampler * smpl, int &n_past){
  211. const char * tmp = sample(smpl, ctx_llava->ctx_llama, &n_past);
  212. return tmp;
  213. }
  214. int main(int argc, char ** argv) {
  215. ggml_time_init();
  216. gpt_params params;
  217. if (!gpt_params_parse(argc, argv, params)) {
  218. show_additional_info(argc, argv);
  219. return 1;
  220. }
  221. #ifndef LOG_DISABLE_LOGS
  222. log_set_target(log_filename_generator("llava", "log"));
  223. LOG_TEE("Log start\n");
  224. log_dump_cmdline(argc, argv);
  225. llama_log_set(llama_log_callback_logTee, nullptr);
  226. #endif // LOG_DISABLE_LOGS
  227. if (params.mmproj.empty() || (params.image.empty())) {
  228. gpt_params_print_usage(argc, argv, params);
  229. show_additional_info(argc, argv);
  230. return 1;
  231. }
  232. for (auto & image : params.image) {
  233. int n_past = 0;
  234. auto ctx_llava = minicpmv_init(&params, image, n_past);
  235. if (!params.prompt.empty()) {
  236. LOG_TEE("<user>%s\n", params.prompt.c_str());
  237. LOG_TEE("<assistant>");
  238. auto smpl = llama_init(ctx_llava, &params, params.prompt.c_str(), n_past, true);
  239. const int max_tgt_len = params.n_predict < 0 ? 256 : params.n_predict;
  240. std::string response = "";
  241. bool have_tmp = false;
  242. for (int i = 0; i < max_tgt_len; i++) {
  243. auto tmp = llama_loop(ctx_llava, smpl, n_past);
  244. response += tmp;
  245. if (strcmp(tmp, "</s>") == 0){
  246. if(!have_tmp)continue;
  247. else break;
  248. }
  249. if (strstr(tmp, "###")) break; // Yi-VL behavior
  250. have_tmp = true;
  251. printf("%s", tmp);
  252. if (strstr(response.c_str(), "<user>")) break; // minicpm-v
  253. fflush(stdout);
  254. }
  255. gpt_sampler_free(smpl);
  256. }else {
  257. while (true) {
  258. LOG_TEE("<user>");
  259. std::string prompt;
  260. std::getline(std::cin, prompt);
  261. LOG_TEE("<assistant>");
  262. auto smpl = llama_init(ctx_llava, &params, prompt, n_past, true);
  263. const int max_tgt_len = params.n_predict < 0 ? 256 : params.n_predict;
  264. std::string response = "";
  265. for (int i = 0; i < max_tgt_len; i++) {
  266. auto tmp = llama_loop(ctx_llava, smpl, n_past);
  267. response += tmp;
  268. if (strcmp(tmp, "</s>") == 0) break;
  269. if (strstr(tmp, "###")) break; // Yi-VL behavior
  270. printf("%s", tmp);// mistral llava-1.6
  271. if (strstr(response.c_str(), "<user>")) break; // minicpm-v
  272. fflush(stdout);
  273. }
  274. gpt_sampler_free(smpl);
  275. }
  276. }
  277. printf("\n");
  278. llama_perf_print(ctx_llava->ctx_llama, LLAMA_PERF_TYPE_CONTEXT);
  279. ctx_llava->model = NULL;
  280. llava_free(ctx_llava);
  281. }
  282. return 0;
  283. }