Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

app.py 27 KB

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
  1. import os, copy
  2. os.environ["RWKV_JIT_ON"] = '1'
  3. os.environ["RWKV_CUDA_ON"] = '1' # if '1' then use CUDA kernel for seq mode (much faster)
  4. # make sure cuda dir is in the same level as modeling_rwkv.py
  5. from modeling_rwkv import RWKV
  6. import gc, re
  7. import gradio as gr
  8. import base64
  9. from io import BytesIO
  10. import torch
  11. import torch.nn.functional as F
  12. from datetime import datetime
  13. from transformers import CLIPImageProcessor
  14. from huggingface_hub import hf_hub_download
  15. from pynvml import *
  16. nvmlInit()
  17. gpu_h = nvmlDeviceGetHandleByIndex(0)
  18. device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
  19. ctx_limit = 2500
  20. gen_limit = 500
  21. ENABLE_VISUAL = False
  22. ########################## text rwkv ################################################################
  23. from rwkv.utils import PIPELINE, PIPELINE_ARGS
  24. title_v6 = "RWKV-x060-World-3B-v2.1-20240417-ctx4096"
  25. model_path_v6 = hf_hub_download(repo_id="BlinkDL/rwkv-6-world", filename=f"{title_v6}.pth")
  26. # model_path_v6 = '/mnt/e/RWKV-Runner/models/rwkv-final-v6-2.1-3b' # conda activate torch2; cd /mnt/program/_RWKV_/_ref_/_gradio_/RWKV-Gradio-1; python app.py
  27. model_v6 = RWKV(model=model_path_v6, strategy='cuda fp16')
  28. pipeline_v6 = PIPELINE(model_v6, "rwkv_vocab_v20230424")
  29. args = model_v6.args
  30. eng_name = 'rwkv-x060-eng_single_round_qa-3B-20240430-ctx1024'
  31. chn_name = 'rwkv-x060-chn_single_round_qa-3B-20240511-ctx1024'
  32. # state_eng_raw = torch.load(f'/mnt/e/RWKV-Runner/models/{eng_name}.pth', map_location=torch.device('cpu'))
  33. # state_chn_raw = torch.load(f'/mnt/e/RWKV-Runner/models/{chn_name}.pth', map_location=torch.device('cpu'))
  34. eng_file = hf_hub_download(repo_id="BlinkDL/temp-latest-training-models", filename=f"{eng_name}.pth")
  35. chn_file = hf_hub_download(repo_id="BlinkDL/temp-latest-training-models", filename=f"{chn_name}.pth")
  36. state_eng_raw = torch.load(eng_file, map_location=torch.device('cpu'))
  37. state_chn_raw = torch.load(chn_file, map_location=torch.device('cpu'))
  38. state_eng = [None] * args.n_layer * 3
  39. state_chn = [None] * args.n_layer * 3
  40. for i in range(args.n_layer):
  41. dd = model_v6.strategy[i]
  42. dev = dd.device
  43. atype = dd.atype
  44. state_eng[i*3+0] = torch.zeros(args.n_embd, dtype=atype, requires_grad=False, device=dev).contiguous()
  45. state_chn[i*3+0] = torch.zeros(args.n_embd, dtype=atype, requires_grad=False, device=dev).contiguous()
  46. state_eng[i*3+1] = state_eng_raw[f'blocks.{i}.att.time_state'].transpose(1,2).to(dtype=torch.float, device=dev).requires_grad_(False).contiguous()
  47. state_chn[i*3+1] = state_chn_raw[f'blocks.{i}.att.time_state'].transpose(1,2).to(dtype=torch.float, device=dev).requires_grad_(False).contiguous()
  48. state_eng[i*3+2] = torch.zeros(args.n_embd, dtype=atype, requires_grad=False, device=dev).contiguous()
  49. state_chn[i*3+2] = torch.zeros(args.n_embd, dtype=atype, requires_grad=False, device=dev).contiguous()
  50. penalty_decay = 0.996
  51. if ENABLE_VISUAL:
  52. title = "RWKV-5-World-1B5-v2-20231025-ctx4096"
  53. model_path = hf_hub_download(repo_id="BlinkDL/rwkv-5-world", filename=f"{title}.pth")
  54. model = RWKV(model=model_path, strategy='cuda fp16')
  55. pipeline = PIPELINE(model, "rwkv_vocab_v20230424")
  56. def generate_prompt(instruction, input=""):
  57. instruction = instruction.strip().replace('\r\n','\n').replace('\n\n','\n')
  58. input = input.strip().replace('\r\n','\n').replace('\n\n','\n')
  59. if input:
  60. return f"""Instruction: {instruction}\n\nInput: {input}\n\nResponse:"""
  61. else:
  62. return f"""User: hi\n\nAssistant: Hi. I am your assistant and I will provide expert full response in full details. Please feel free to ask any question and I will always answer it.\n\nUser: {instruction}\n\nAssistant:"""
  63. def qa_prompt(instruction):
  64. instruction = instruction.strip().replace('\r\n','\n')
  65. instruction = re.sub(r'\n+', '\n', instruction)
  66. return f"User: {instruction}\n\nAssistant:"""
  67. def evaluate(
  68. ctx,
  69. token_count=200,
  70. temperature=1.0,
  71. top_p=0.7,
  72. presencePenalty = 0.1,
  73. countPenalty = 0.1,
  74. ):
  75. args = PIPELINE_ARGS(temperature = max(0.2, float(temperature)), top_p = float(top_p),
  76. alpha_frequency = countPenalty,
  77. alpha_presence = presencePenalty,
  78. token_ban = [], # ban the generation of some tokens
  79. token_stop = [0]) # stop generation whenever you see any token here
  80. ctx = ctx.strip()
  81. all_tokens = []
  82. out_last = 0
  83. out_str = ''
  84. occurrence = {}
  85. state = None
  86. for i in range(int(token_count)):
  87. input_ids = pipeline_v6.encode(ctx)[-ctx_limit:] if i == 0 else [token]
  88. out, state = model_v6.forward(tokens=input_ids, state=state)
  89. for n in occurrence:
  90. out[n] -= (args.alpha_presence + occurrence[n] * args.alpha_frequency)
  91. token = pipeline_v6.sample_logits(out, temperature=args.temperature, top_p=args.top_p)
  92. if token in args.token_stop:
  93. break
  94. all_tokens += [token]
  95. for xxx in occurrence:
  96. occurrence[xxx] *= penalty_decay
  97. ttt = pipeline_v6.decode([token])
  98. www = 1
  99. if ttt in ' \t0123456789':
  100. www = 0
  101. #elif ttt in '\r\n,.;?!"\':+-*/=#@$%^&_`~|<>\\()[]{},。;“”:?!()【】':
  102. # www = 0.5
  103. if token not in occurrence:
  104. occurrence[token] = www
  105. else:
  106. occurrence[token] += www
  107. tmp = pipeline_v6.decode(all_tokens[out_last:])
  108. if '\ufffd' not in tmp:
  109. out_str += tmp
  110. yield out_str.strip()
  111. out_last = i + 1
  112. gpu_info = nvmlDeviceGetMemoryInfo(gpu_h)
  113. timestamp = datetime.now().strftime("%Y-%m-%d %H:%M:%S")
  114. print(f'{timestamp} - vram {gpu_info.total} used {gpu_info.used} free {gpu_info.free}')
  115. del out
  116. del state
  117. gc.collect()
  118. torch.cuda.empty_cache()
  119. yield out_str.strip()
  120. def evaluate_eng(
  121. ctx,
  122. token_count=200,
  123. temperature=1.0,
  124. top_p=0.7,
  125. presencePenalty = 0.1,
  126. countPenalty = 0.1,
  127. ):
  128. args = PIPELINE_ARGS(temperature = max(0.2, float(temperature)), top_p = float(top_p),
  129. alpha_frequency = countPenalty,
  130. alpha_presence = presencePenalty,
  131. token_ban = [], # ban the generation of some tokens
  132. token_stop = [0]) # stop generation whenever you see any token here
  133. ctx = qa_prompt(ctx)
  134. all_tokens = []
  135. out_last = 0
  136. out_str = ''
  137. occurrence = {}
  138. state = copy.deepcopy(state_eng)
  139. for i in range(int(token_count)):
  140. input_ids = pipeline_v6.encode(ctx)[-ctx_limit:] if i == 0 else [token]
  141. out, state = model_v6.forward(tokens=input_ids, state=state)
  142. for n in occurrence:
  143. out[n] -= (args.alpha_presence + occurrence[n] * args.alpha_frequency)
  144. token = pipeline_v6.sample_logits(out, temperature=args.temperature, top_p=args.top_p)
  145. if token in args.token_stop:
  146. break
  147. all_tokens += [token]
  148. for xxx in occurrence:
  149. occurrence[xxx] *= penalty_decay
  150. ttt = pipeline_v6.decode([token])
  151. www = 1
  152. if ttt in ' \t0123456789':
  153. www = 0
  154. #elif ttt in '\r\n,.;?!"\':+-*/=#@$%^&_`~|<>\\()[]{},。;“”:?!()【】':
  155. # www = 0.5
  156. if token not in occurrence:
  157. occurrence[token] = www
  158. else:
  159. occurrence[token] += www
  160. tmp = pipeline_v6.decode(all_tokens[out_last:])
  161. if '\ufffd' not in tmp:
  162. out_str += tmp
  163. yield out_str.strip()
  164. out_last = i + 1
  165. gpu_info = nvmlDeviceGetMemoryInfo(gpu_h)
  166. timestamp = datetime.now().strftime("%Y-%m-%d %H:%M:%S")
  167. print(f'{timestamp} - vram {gpu_info.total} used {gpu_info.used} free {gpu_info.free}')
  168. del out
  169. del state
  170. gc.collect()
  171. torch.cuda.empty_cache()
  172. yield out_str.strip()
  173. def evaluate_chn(
  174. ctx,
  175. token_count=200,
  176. temperature=1.0,
  177. top_p=0.7,
  178. presencePenalty = 0.1,
  179. countPenalty = 0.1,
  180. ):
  181. args = PIPELINE_ARGS(temperature = max(0.2, float(temperature)), top_p = float(top_p),
  182. alpha_frequency = countPenalty,
  183. alpha_presence = presencePenalty,
  184. token_ban = [], # ban the generation of some tokens
  185. token_stop = [0]) # stop generation whenever you see any token here
  186. ctx = qa_prompt(ctx)
  187. all_tokens = []
  188. out_last = 0
  189. out_str = ''
  190. occurrence = {}
  191. state = copy.deepcopy(state_chn)
  192. for i in range(int(token_count)):
  193. input_ids = pipeline_v6.encode(ctx)[-ctx_limit:] if i == 0 else [token]
  194. out, state = model_v6.forward(tokens=input_ids, state=state)
  195. for n in occurrence:
  196. out[n] -= (args.alpha_presence + occurrence[n] * args.alpha_frequency)
  197. token = pipeline_v6.sample_logits(out, temperature=args.temperature, top_p=args.top_p)
  198. if token in args.token_stop:
  199. break
  200. all_tokens += [token]
  201. for xxx in occurrence:
  202. occurrence[xxx] *= penalty_decay
  203. ttt = pipeline_v6.decode([token])
  204. www = 1
  205. if ttt in ' \t0123456789':
  206. www = 0
  207. #elif ttt in '\r\n,.;?!"\':+-*/=#@$%^&_`~|<>\\()[]{},。;“”:?!()【】':
  208. # www = 0.5
  209. if token not in occurrence:
  210. occurrence[token] = www
  211. else:
  212. occurrence[token] += www
  213. tmp = pipeline_v6.decode(all_tokens[out_last:])
  214. if '\ufffd' not in tmp:
  215. out_str += tmp
  216. yield out_str.strip()
  217. out_last = i + 1
  218. gpu_info = nvmlDeviceGetMemoryInfo(gpu_h)
  219. timestamp = datetime.now().strftime("%Y-%m-%d %H:%M:%S")
  220. print(f'{timestamp} - vram {gpu_info.total} used {gpu_info.used} free {gpu_info.free}')
  221. del out
  222. del state
  223. gc.collect()
  224. torch.cuda.empty_cache()
  225. yield out_str.strip()
  226. examples = [
  227. ["Assistant: How can we craft an engaging story featuring vampires on Mars? Let's think step by step and provide an expert response.", gen_limit, 1, 0.3, 0.5, 0.5],
  228. ["Assistant: How can we persuade Elon Musk to follow you on Twitter? Let's think step by step and provide an expert response.", gen_limit, 1, 0.3, 0.5, 0.5],
  229. [generate_prompt("東京で訪れるべき素晴らしい場所とその紹介をいくつか挙げてください。"), gen_limit, 1, 0.3, 0.5, 0.5],
  230. [generate_prompt("Write a story using the following information.", "A man named Alex chops a tree down."), gen_limit, 1, 0.3, 0.5, 0.5],
  231. ["A few light taps upon the pane made her turn to the window. It had begun to snow again.", gen_limit, 1, 0.3, 0.5, 0.5],
  232. ['''Edward: I am Edward Elric from Fullmetal Alchemist.\n\nUser: Hello Edward. What have you been up to recently?\n\nEdward:''', gen_limit, 1, 0.3, 0.5, 0.5],
  233. [generate_prompt("Write a simple website in HTML. When a user clicks the button, it shows a random joke from a list of 4 jokes."), 500, 1, 0.3, 0.5, 0.5],
  234. ['''Japanese: 春の初め、桜の花が満開になる頃、小さな町の片隅にある古びた神社の境内は、特別な雰囲気に包まれていた。\n\nEnglish:''', gen_limit, 1, 0.3, 0.5, 0.5],
  235. ["En una pequeña aldea escondida entre las montañas de Andalucía, donde las calles aún conservaban el eco de antiguas leyendas, vivía un joven llamado Alejandro.", gen_limit, 1, 0.3, 0.5, 0.5],
  236. ["Dans le cœur battant de Paris, sous le ciel teinté d'un crépuscule d'or et de pourpre, se tenait une petite librairie oubliée par le temps.", gen_limit, 1, 0.3, 0.5, 0.5],
  237. ["في تطور مذهل وغير مسبوق، أعلنت السلطات المحلية في العاصمة عن اكتشاف أثري قد يغير مجرى التاريخ كما نعرفه.", gen_limit, 1, 0.3, 0.5, 0.5],
  238. ['''“当然可以,大宇宙不会因为这五公斤就不坍缩了。”关一帆说,他还有一个没说出来的想法:也许大宇宙真的会因为相差一个原子的质量而由封闭转为开放。大自然的精巧有时超出想象,比如生命的诞生,就需要各项宇宙参数在几亿亿分之一精度上的精确配合。但程心仍然可以留下她的生态球,因为在那无数文明创造的无数小宇宙中,肯定有相当一部分不响应回归运动的号召,所以,大宇宙最终被夺走的质量至少有几亿吨,甚至可能是几亿亿亿吨。\n但愿大宇宙能够忽略这个误差。\n程心和关一帆进入了飞船,智子最后也进来了。她早就不再穿那身华丽的和服了,她现在身着迷彩服,再次成为一名轻捷精悍的战士,她的身上佩带着许多武器和生存装备,最引人注目的是那把插在背后的武士刀。\n“放心,我在,你们就在!”智子对两位人类朋友说。\n聚变发动机启动了,推进器发出幽幽的蓝光,''', gen_limit, 1, 0.3, 0.5, 0.5],
  239. ]
  240. examples_eng = [
  241. ["How can I craft an engaging story featuring vampires on Mars?", gen_limit, 1, 0.2, 0.3, 0.3],
  242. ["Compare the business models of Apple and Google.", gen_limit, 1, 0.2, 0.3, 0.3],
  243. ["In JSON format, list the top 5 tourist attractions in Paris.", gen_limit, 1, 0.2, 0.3, 0.3],
  244. ["Write an outline for a fantasy novel where dreams can alter reality.", gen_limit, 1, 0.2, 0.3, 0.3],
  245. ["Can fish get thirsty?", gen_limit, 1, 0.2, 0.3, 0.3],
  246. ["Write a Bash script to check disk usage and send alerts if it's too high.", gen_limit, 1, 0.2, 0.3, 0.3],
  247. ["Write a simple website in HTML. When a user clicks the button, it shows a random joke from a list of 4 jokes.", gen_limit, 1, 0.2, 0.3, 0.3],
  248. ]
  249. examples_chn = [
  250. ["怎样写一个在火星上的吸血鬼的有趣故事?", gen_limit, 1, 0.2, 0.3, 0.3],
  251. ["比较苹果和谷歌的商业模式。", gen_limit, 1, 0.2, 0.3, 0.3],
  252. ["鱼会口渴吗?", gen_limit, 1, 0.2, 0.3, 0.3],
  253. ["以 JSON 格式列举北京的美食。", gen_limit, 1, 0.2, 0.3, 0.3],
  254. ["编写一个Bash脚本来检查磁盘使用情况,如果使用量过高则发送警报。", gen_limit, 1, 0.2, 0.3, 0.3],
  255. ["用HTML编写一个简单的网站。当用户点击按钮时,从4个笑话的列表中随机显示一个笑话。", gen_limit, 1, 0.2, 0.3, 0.3],
  256. ]
  257. if ENABLE_VISUAL:
  258. ########################## visual rwkv ################################################################
  259. visual_title = 'ViusualRWKV-v5'
  260. rwkv_remote_path = "rwkv1b5-vitl336p14-577token_mix665k_rwkv.pth"
  261. vision_remote_path = "rwkv1b5-vitl336p14-577token_mix665k_visual.pth"
  262. vision_tower_name = 'openai/clip-vit-large-patch14-336'
  263. model_path = hf_hub_download(repo_id="howard-hou/visualrwkv-5", filename=rwkv_remote_path)
  264. visual_rwkv = RWKV(model=model_path, strategy='cuda fp16')
  265. ##########################################################################
  266. from modeling_vision import VisionEncoder, VisionEncoderConfig
  267. config = VisionEncoderConfig(n_embd=model.args.n_embd,
  268. vision_tower_name=vision_tower_name,
  269. grid_size=-1)
  270. visual_encoder = VisionEncoder(config)
  271. vision_local_path = hf_hub_download(repo_id="howard-hou/visualrwkv-5", filename=vision_remote_path)
  272. vision_state_dict = torch.load(vision_local_path, map_location='cpu')
  273. visual_encoder.load_state_dict(vision_state_dict)
  274. image_processor = CLIPImageProcessor.from_pretrained(vision_tower_name)
  275. visual_encoder = visual_encoder.to(device)
  276. ##########################################################################
  277. def visual_generate_prompt(instruction):
  278. instruction = instruction.strip().replace('\r\n','\n').replace('\n\n','\n')
  279. return f"\n{instruction}\n\nAssistant:"
  280. def generate(
  281. ctx,
  282. image_state,
  283. token_count=200,
  284. temperature=1.0,
  285. top_p=0.1,
  286. presencePenalty = 0.0,
  287. countPenalty = 1.0,
  288. ):
  289. args = PIPELINE_ARGS(temperature = 1.0, top_p = 0.1,
  290. alpha_frequency = 1.0,
  291. alpha_presence = 0.0,
  292. token_ban = [], # ban the generation of some tokens
  293. token_stop = [0, 261]) # stop generation whenever you see any token here
  294. ctx = ctx.strip()
  295. all_tokens = []
  296. out_last = 0
  297. out_str = ''
  298. occurrence = {}
  299. for i in range(int(token_count)):
  300. if i == 0:
  301. input_ids = pipeline.encode(ctx)[-ctx_limit:]
  302. out, state = visual_rwkv.forward(tokens=input_ids, state=image_state)
  303. else:
  304. input_ids = [token]
  305. out, state = visual_rwkv.forward(tokens=input_ids, state=state)
  306. for n in occurrence:
  307. out[n] -= (args.alpha_presence + occurrence[n] * args.alpha_frequency)
  308. token = pipeline.sample_logits(out, temperature=args.temperature, top_p=args.top_p)
  309. if token in args.token_stop:
  310. break
  311. all_tokens += [token]
  312. for xxx in occurrence:
  313. occurrence[xxx] *= 0.994
  314. if token not in occurrence:
  315. occurrence[token] = 1
  316. else:
  317. occurrence[token] += 1
  318. tmp = pipeline.decode(all_tokens[out_last:])
  319. if '\ufffd' not in tmp:
  320. out_str += tmp
  321. yield out_str.strip()
  322. out_last = i + 1
  323. gpu_info = nvmlDeviceGetMemoryInfo(gpu_h)
  324. timestamp = datetime.now().strftime("%Y-%m-%d %H:%M:%S")
  325. print(f'{timestamp} - vram {gpu_info.total} used {gpu_info.used} free {gpu_info.free}')
  326. del out
  327. del state
  328. gc.collect()
  329. torch.cuda.empty_cache()
  330. yield out_str.strip()
  331. ##########################################################################
  332. cur_dir = os.path.dirname(os.path.abspath(__file__))
  333. visual_examples = [
  334. [
  335. f"{cur_dir}/examples_pizza.jpg",
  336. "What are steps to cook it?"
  337. ],
  338. [
  339. f"{cur_dir}/examples_bluejay.jpg",
  340. "what is the name of this bird?",
  341. ],
  342. [
  343. f"{cur_dir}/examples_woman_and_dog.png",
  344. "describe this image",
  345. ],
  346. ]
  347. def pil_image_to_base64(pil_image):
  348. buffered = BytesIO()
  349. pil_image.save(buffered, format="JPEG") # You can change the format as needed (JPEG, PNG, etc.)
  350. # Encodes the image data into base64 format as a bytes object
  351. base64_image = base64.b64encode(buffered.getvalue()).decode('utf-8')
  352. return base64_image
  353. image_cache = {}
  354. ln0_weight = model.w['blocks.0.ln0.weight'].to(torch.float32).to(device)
  355. ln0_bias = model.w['blocks.0.ln0.bias'].to(torch.float32).to(device)
  356. def compute_image_state(image):
  357. base64_image = pil_image_to_base64(image)
  358. if base64_image in image_cache:
  359. image_state = image_cache[base64_image]
  360. else:
  361. image = image_processor(images=image.convert('RGB'), return_tensors='pt')['pixel_values'].to(device)
  362. image_features = visual_encoder.encode_images(image.unsqueeze(0)).squeeze(0) # [L, D]
  363. # apply layer norm to image feature, very important
  364. image_features = F.layer_norm(image_features,
  365. (image_features.shape[-1],),
  366. weight=ln0_weight,
  367. bias=ln0_bias)
  368. _, image_state = model.forward(embs=image_features, state=None)
  369. image_cache[base64_image] = image_state
  370. return image_state
  371. def chatbot(image, question):
  372. if image is None:
  373. yield "Please upload an image."
  374. return
  375. image_state = compute_image_state(image)
  376. input_text = visual_generate_prompt(question)
  377. for output in generate(input_text, image_state):
  378. yield output
  379. ##################################################################################################################
  380. with gr.Blocks(title=title_v6) as demo:
  381. gr.HTML(f"<div style=\"text-align: center;\">\n<h1>{title_v6}</h1>\n</div>")
  382. with gr.Tab("=== Base Model (Raw Generation) ==="):
  383. gr.Markdown(f"This is [RWKV-6 World v2](https://huggingface.co/BlinkDL/rwkv-6-world) - a 100% attention-free RNN [RWKV-LM](https://github.com/BlinkDL/RWKV-LM). Supports 100+ world languages and code. Check [300+ Github RWKV projects](https://github.com/search?o=desc&p=1&q=rwkv&s=updated&type=Repositories). *** Can try examples (bottom of page) *** (can edit them). Demo limited to ctxlen {ctx_limit}.")
  384. with gr.Row():
  385. with gr.Column():
  386. prompt = gr.Textbox(lines=2, label="Prompt", value="Assistant: How can we craft an engaging story featuring vampires on Mars? Let's think step by step and provide an expert response.")
  387. token_count = gr.Slider(10, gen_limit, label="Max Tokens", step=10, value=gen_limit)
  388. temperature = gr.Slider(0.2, 2.0, label="Temperature", step=0.1, value=1.0)
  389. top_p = gr.Slider(0.0, 1.0, label="Top P", step=0.05, value=0.3)
  390. presence_penalty = gr.Slider(0.0, 1.0, label="Presence Penalty", step=0.1, value=0.5)
  391. count_penalty = gr.Slider(0.0, 1.0, label="Count Penalty", step=0.1, value=0.5)
  392. with gr.Column():
  393. with gr.Row():
  394. submit = gr.Button("Submit", variant="primary")
  395. clear = gr.Button("Clear", variant="secondary")
  396. output = gr.Textbox(label="Output", lines=30)
  397. data = gr.Dataset(components=[prompt, token_count, temperature, top_p, presence_penalty, count_penalty], samples=examples, samples_per_page=50, label="Example Instructions", headers=["Prompt", "Max Tokens", "Temperature", "Top P", "Presence Penalty", "Count Penalty"])
  398. submit.click(evaluate, [prompt, token_count, temperature, top_p, presence_penalty, count_penalty], [output])
  399. clear.click(lambda: None, [], [output])
  400. data.click(lambda x: x, [data], [prompt, token_count, temperature, top_p, presence_penalty, count_penalty])
  401. with gr.Tab("=== English Q/A ==="):
  402. gr.Markdown(f"This is [RWKV-6](https://huggingface.co/BlinkDL/rwkv-6-world) state-tuned to [English Q/A](https://huggingface.co/BlinkDL/temp-latest-training-models/blob/main/{eng_name}.pth). RWKV is a 100% attention-free RNN [RWKV-LM](https://github.com/BlinkDL/RWKV-LM), and we have [300+ Github RWKV projects](https://github.com/search?o=desc&p=1&q=rwkv&s=updated&type=Repositories). Demo limited to ctxlen {ctx_limit}.")
  403. with gr.Row():
  404. with gr.Column():
  405. prompt = gr.Textbox(lines=2, label="Prompt", value="How can I craft an engaging story featuring vampires on Mars?")
  406. token_count = gr.Slider(10, gen_limit, label="Max Tokens", step=10, value=gen_limit)
  407. temperature = gr.Slider(0.2, 2.0, label="Temperature", step=0.1, value=1.0)
  408. top_p = gr.Slider(0.0, 1.0, label="Top P", step=0.05, value=0.2)
  409. presence_penalty = gr.Slider(0.0, 1.0, label="Presence Penalty", step=0.1, value=0.3)
  410. count_penalty = gr.Slider(0.0, 1.0, label="Count Penalty", step=0.1, value=0.3)
  411. with gr.Column():
  412. with gr.Row():
  413. submit = gr.Button("Submit", variant="primary")
  414. clear = gr.Button("Clear", variant="secondary")
  415. output = gr.Textbox(label="Output", lines=30)
  416. data = gr.Dataset(components=[prompt, token_count, temperature, top_p, presence_penalty, count_penalty], samples=examples_eng, samples_per_page=50, label="Examples", headers=["Prompt", "Max Tokens", "Temperature", "Top P", "Presence Penalty", "Count Penalty"])
  417. submit.click(evaluate_eng, [prompt, token_count, temperature, top_p, presence_penalty, count_penalty], [output])
  418. clear.click(lambda: None, [], [output])
  419. data.click(lambda x: x, [data], [prompt, token_count, temperature, top_p, presence_penalty, count_penalty])
  420. with gr.Tab("=== Chinese Q/A ==="):
  421. gr.Markdown(f"This is [RWKV-6](https://huggingface.co/BlinkDL/rwkv-6-world) state-tuned to [Chinese Q/A](https://huggingface.co/BlinkDL/temp-latest-training-models/blob/main/{chn_name}.pth). RWKV is a 100% attention-free RNN [RWKV-LM](https://github.com/BlinkDL/RWKV-LM), and we have [300+ Github RWKV projects](https://github.com/search?o=desc&p=1&q=rwkv&s=updated&type=Repositories). Demo limited to ctxlen {ctx_limit}.")
  422. with gr.Row():
  423. with gr.Column():
  424. prompt = gr.Textbox(lines=2, label="Prompt", value="怎样写一个在火星上的吸血鬼的有趣故事?")
  425. token_count = gr.Slider(10, gen_limit, label="Max Tokens", step=10, value=gen_limit)
  426. temperature = gr.Slider(0.2, 2.0, label="Temperature", step=0.1, value=1.0)
  427. top_p = gr.Slider(0.0, 1.0, label="Top P", step=0.05, value=0.2)
  428. presence_penalty = gr.Slider(0.0, 1.0, label="Presence Penalty", step=0.1, value=0.3)
  429. count_penalty = gr.Slider(0.0, 1.0, label="Count Penalty", step=0.1, value=0.3)
  430. with gr.Column():
  431. with gr.Row():
  432. submit = gr.Button("Submit", variant="primary")
  433. clear = gr.Button("Clear", variant="secondary")
  434. output = gr.Textbox(label="Output", lines=30)
  435. data = gr.Dataset(components=[prompt, token_count, temperature, top_p, presence_penalty, count_penalty], samples=examples_chn, samples_per_page=50, label="Examples", headers=["Prompt", "Max Tokens", "Temperature", "Top P", "Presence Penalty", "Count Penalty"])
  436. submit.click(evaluate_chn, [prompt, token_count, temperature, top_p, presence_penalty, count_penalty], [output])
  437. clear.click(lambda: None, [], [output])
  438. data.click(lambda x: x, [data], [prompt, token_count, temperature, top_p, presence_penalty, count_penalty])
  439. if ENABLE_VISUAL:
  440. with gr.Tab("Visual RWKV-5 1.5B"):
  441. with gr.Row():
  442. with gr.Column():
  443. image = gr.Image(type='pil', label="Image")
  444. with gr.Column():
  445. prompt = gr.Textbox(lines=8, label="Prompt",
  446. value="Render a clear and concise summary of the photo.")
  447. with gr.Row():
  448. submit = gr.Button("Submit", variant="primary")
  449. clear = gr.Button("Clear", variant="secondary")
  450. with gr.Column():
  451. output = gr.Textbox(label="Output", lines=10)
  452. data = gr.Dataset(components=[image, prompt], samples=visual_examples, label="Examples", headers=["Image", "Prompt"])
  453. submit.click(chatbot, [image, prompt], [output])
  454. clear.click(lambda: None, [], [output])
  455. data.click(lambda x: x, [data], [image, prompt])
  456. demo.queue(concurrency_count=1, max_size=10)
  457. demo.launch(share=False)
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...