minicpmv-cli.cpp 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327
  1. #include "arg.h"
  2. #include "log.h"
  3. #include "common.h"
  4. #include "sampling.h"
  5. #include "clip.h"
  6. #include "llava.h"
  7. #include "llama.h"
  8. #include "ggml.h"
  9. #include <algorithm>
  10. #include <cstdio>
  11. #include <cstdlib>
  12. #include <cstring>
  13. #include <vector>
  14. #include <iostream> // TODO: remove me
  15. struct llava_context {
  16. struct clip_ctx * ctx_clip = NULL;
  17. struct llama_context * ctx_llama = NULL;
  18. struct llama_model * model = NULL;
  19. };
  20. static void show_additional_info(int /*argc*/, char ** argv) {
  21. LOG("\nexample usage:\n\n%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]);
  22. LOG("\nnote: a lower temperature value like 0.1 is recommended for better quality.\n");
  23. }
  24. static struct llama_model * llava_init(common_params * params) {
  25. llama_backend_init();
  26. llama_numa_init(params->numa);
  27. llama_model_params model_params = common_model_params_to_llama(*params);
  28. llama_model * model = llama_model_load_from_file(params->model.c_str(), model_params);
  29. if (model == NULL) {
  30. LOG_ERR("%s: unable to load model\n" , __func__);
  31. return NULL;
  32. }
  33. return model;
  34. }
  35. static struct llava_context * llava_init_context(common_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 = common_context_params_to_llama(*params);
  41. if (params->n_ctx < 2048) {
  42. // warn user here, "Image processing requires at least 2048 context, setting context to 2048"
  43. LOG_WRN("%s: 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_init_from_model(model, ctx_params);
  49. if (ctx_llama == NULL) {
  50. LOG_ERR("%s: 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_model_free(ctx_llava->model);
  65. llama_backend_free();
  66. }
  67. static struct clip_ctx * clip_init_context(common_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))) {
  84. LOG_ERR("%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 = common_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, common_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_INF("%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_INF("%s: image token past: %d\n", __func__, n_past);
  141. }
  142. static const char * sample(struct common_sampler * smpl,
  143. struct llama_context * ctx_llama,
  144. int * n_past) {
  145. const llama_token id = common_sampler_sample(smpl, ctx_llama, -1);
  146. common_sampler_accept(smpl, id, true);
  147. const llama_model * model = llama_get_model(ctx_llama);
  148. const llama_vocab * vocab = llama_model_get_vocab(model);
  149. static std::string ret;
  150. if (llama_vocab_is_eog(vocab, id)) {
  151. ret = "</s>";
  152. } else {
  153. ret = common_token_to_piece(ctx_llama, id);
  154. }
  155. eval_id(ctx_llama, id, n_past);
  156. return ret.c_str();
  157. }
  158. static struct llava_context * minicpmv_init(common_params * params, const std::string & fname, int &n_past){
  159. auto * ctx_clip = clip_init_context(params);
  160. auto * embeds = llava_image_embed_make_with_filename(ctx_clip, params->cpuparams.n_threads, fname.c_str());
  161. if (!embeds) {
  162. LOG_ERR("failed to load image %s. Terminating\n\n", fname.c_str());
  163. return NULL;
  164. }
  165. // process the prompt
  166. if (params->prompt.empty() && params->interactive == false) {
  167. LOG_ERR("prompt should be given or interactive mode should be on");
  168. return NULL;
  169. }
  170. auto * model = llava_init(params);
  171. if (model == NULL) {
  172. fprintf(stderr, "%s: error: failed to init minicpmv model\n", __func__);
  173. return NULL;
  174. }
  175. const int64_t t_llava_init_start_us = ggml_time_us();
  176. auto * ctx_llava = llava_init_context(params, model);
  177. ctx_llava->ctx_clip = ctx_clip;
  178. const int64_t t_llava_init_end_us = ggml_time_us();
  179. float t_llava_init_ms = (t_llava_init_end_us - t_llava_init_start_us) / 1000.0;
  180. LOG_INF("%s: llava init in %8.2f ms.\n", __func__, t_llava_init_ms);
  181. const int64_t t_process_image_start_us = ggml_time_us();
  182. process_image(ctx_llava, embeds, params, n_past);
  183. const int64_t t_process_image_end_us = ggml_time_us();
  184. float t_process_image_ms = (t_process_image_end_us - t_process_image_start_us) / 1000.0;
  185. LOG_INF("%s: llama process image in %8.2f ms.\n", __func__, t_process_image_ms);
  186. llava_image_embed_free(embeds);
  187. return ctx_llava;
  188. }
  189. static struct common_sampler * llama_init(struct llava_context * ctx_llava, common_params * params, const std::string & prompt, int & n_past, bool is_first = false){
  190. std::string user_prompt = prompt;
  191. int has_minicpmv_projector = clip_is_minicpmv(ctx_llava->ctx_clip);
  192. if (!is_first) {
  193. if (has_minicpmv_projector == 2) {
  194. user_prompt = "<|begin_of_text|><|start_header_id|>user<|end_header_id|>\n\n" + prompt;
  195. }
  196. else if (has_minicpmv_projector == 3) {
  197. user_prompt = "<|im_start|>user\n" + prompt;
  198. }
  199. }
  200. eval_string(ctx_llava->ctx_llama, user_prompt.c_str(), params->n_batch, &n_past, false);
  201. if (has_minicpmv_projector == 2) {
  202. eval_string(ctx_llava->ctx_llama, "<|eot_id|><|start_header_id|>assistant<|end_header_id|>\n\n", params->n_batch, &n_past, false);
  203. }
  204. else if (has_minicpmv_projector == 3) {
  205. eval_string(ctx_llava->ctx_llama, "<|im_end|><|im_start|>assistant\n", params->n_batch, &n_past, false);
  206. }
  207. // generate the response
  208. LOG_INF("\n");
  209. struct common_sampler * smpl = common_sampler_init(ctx_llava->model, params->sampling);
  210. return smpl;
  211. }
  212. static const char * llama_loop(struct llava_context * ctx_llava,struct common_sampler * smpl, int &n_past){
  213. const char * tmp = sample(smpl, ctx_llava->ctx_llama, &n_past);
  214. return tmp;
  215. }
  216. int main(int argc, char ** argv) {
  217. ggml_time_init();
  218. common_params params;
  219. if (!common_params_parse(argc, argv, params, LLAMA_EXAMPLE_LLAVA, show_additional_info)) {
  220. return 1;
  221. }
  222. common_init();
  223. if (params.mmproj.empty() || (params.image.empty())) {
  224. show_additional_info(argc, argv);
  225. return 1;
  226. }
  227. for (auto & image : params.image) {
  228. int n_past = 0;
  229. auto * ctx_llava = minicpmv_init(&params, image, n_past);
  230. if (!params.prompt.empty()) {
  231. LOG("<user>%s\n", params.prompt.c_str());
  232. LOG("<assistant>");
  233. auto * smpl = llama_init(ctx_llava, &params, params.prompt, n_past, true);
  234. const int max_tgt_len = params.n_predict < 0 ? 256 : params.n_predict;
  235. std::string response;
  236. bool have_tmp = false;
  237. for (int i = 0; i < max_tgt_len; i++) {
  238. const auto * tmp = llama_loop(ctx_llava, smpl, n_past);
  239. response += tmp;
  240. if (strcmp(tmp, "</s>") == 0){
  241. if (!have_tmp) {
  242. continue;
  243. }
  244. break;
  245. }
  246. if (strstr(tmp, "###")) break; // Yi-VL behavior
  247. have_tmp = true;
  248. printf("%s", tmp);
  249. if (strstr(response.c_str(), "<user>")) break; // minicpm-v
  250. fflush(stdout);
  251. }
  252. common_sampler_free(smpl);
  253. }else {
  254. while (true) {
  255. LOG("<user>");
  256. std::string prompt;
  257. std::getline(std::cin, prompt);
  258. LOG("<assistant>");
  259. auto * smpl = llama_init(ctx_llava, &params, prompt, n_past, true);
  260. const int max_tgt_len = params.n_predict < 0 ? 256 : params.n_predict;
  261. std::string response;
  262. for (int i = 0; i < max_tgt_len; i++) {
  263. const auto * tmp = llama_loop(ctx_llava, smpl, n_past);
  264. response += tmp;
  265. if (strcmp(tmp, "</s>") == 0) break;
  266. if (strstr(tmp, "###")) break; // Yi-VL behavior
  267. printf("%s", tmp);// mistral llava-1.6
  268. if (strstr(response.c_str(), "<user>")) break; // minicpm-v
  269. fflush(stdout);
  270. }
  271. common_sampler_free(smpl);
  272. }
  273. }
  274. printf("\n");
  275. llama_perf_context_print(ctx_llava->ctx_llama);
  276. ctx_llava->model = NULL;
  277. llava_free(ctx_llava);
  278. }
  279. return 0;
  280. }