svjack commited on
Commit
1144a29
1 Parent(s): 42082ed

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +17 -2
app.py CHANGED
@@ -1,6 +1,11 @@
 
 
 
 
 
1
  from summary_reverse_pred_native import *
2
  import gradio as gr
3
- import os
4
 
5
  text0 = "飓风格特是1993年9月在墨西哥和整个中美洲引发严重洪灾的大规模热带气旋,源于9月14日西南加勒比海上空一股东风波。次日从尼加拉瓜登岸,经过洪都拉斯后于9月17日在洪都拉斯湾再次达到热带风暴标准,但次日进入伯利兹上空后就减弱成热带低气压。穿过尤卡坦半岛后,在9月20日强化成二级飓风,从韦拉克鲁斯州的图斯潘附近登陆墨西哥。9月21日从纳亚里特州进入太平洋时已降级成热带低气压,最终于5天后在开放水域上空消散。"
6
  text1 = "珊瑚坝是长江中的一处河漫滩,位于长江重庆市渝中区区段主航道左侧[1],靠近渝中半岛,原分属重庆市市中区菜园坝街道和石板坡街道[2],现属渝中区菜园坝街道石板坡社区[3],是长江上游缓冲地段自然冲积沙洲,略呈纺锤形[4]或椭圆形,长约1800米,宽约600米,坝上遍布鹅卵石和水草。每年夏季洪水时均被淹没,其余时间常露水面,枯水期则与长江左岸相连[5]。"
@@ -16,6 +21,15 @@ def demo_func(prefix, do_sample):
16
  "Dialogue Context": l
17
  }
18
 
 
 
 
 
 
 
 
 
 
19
  demo = gr.Interface(
20
  fn=demo_func,
21
  inputs=[gr.Text(label = "Context"),
@@ -23,7 +37,8 @@ demo = gr.Interface(
23
  ],
24
  outputs="json",
25
  title=f"Chinese Context Dialogue Generator 🐰 demonstration",
26
- description = 'This _example_ was **drive** from <br/><b><h4>[https://github.com/svjack/Context2Dialogue](https://github.com/svjack/Context2Dialogue)</h4></b>\n',
 
27
  examples=example_sample if example_sample else None,
28
  cache_examples = False
29
  )
 
1
+ import os
2
+ os.system("pip install huggingface_hub")
3
+
4
+ from huggingface_hub import space_info
5
+
6
  from summary_reverse_pred_native import *
7
  import gradio as gr
8
+ #import os
9
 
10
  text0 = "飓风格特是1993年9月在墨西哥和整个中美洲引发严重洪灾的大规模热带气旋,源于9月14日西南加勒比海上空一股东风波。次日从尼加拉瓜登岸,经过洪都拉斯后于9月17日在洪都拉斯湾再次达到热带风暴标准,但次日进入伯利兹上空后就减弱成热带低气压。穿过尤卡坦半岛后,在9月20日强化成二级飓风,从韦拉克鲁斯州的图斯潘附近登陆墨西哥。9月21日从纳亚里特州进入太平洋时已降级成热带低气压,最终于5天后在开放水域上空消散。"
11
  text1 = "珊瑚坝是长江中的一处河漫滩,位于长江重庆市渝中区区段主航道左侧[1],靠近渝中半岛,原分属重庆市市中区菜园坝街道和石板坡街道[2],现属渝中区菜园坝街道石板坡社区[3],是长江上游缓冲地段自然冲积沙洲,略呈纺锤形[4]或椭圆形,长约1800米,宽约600米,坝上遍布鹅卵石和水草。每年夏季洪水时均被淹没,其余时间常露水面,枯水期则与长江左岸相连[5]。"
 
21
  "Dialogue Context": l
22
  }
23
 
24
+ markdown_exp_size = "##"
25
+ lora_repo = "svjack/chatglm3-few-shot"
26
+ lora_repo_link = "svjack/chatglm3-few-shot/?input_list_index=7"
27
+ emoji_info = space_info(lora_repo).__dict__["cardData"]["emoji"]
28
+ space_cnt = 1
29
+ task_name = "[---Chinese Context Dialogue Generator---]"
30
+ description = f"{markdown_exp_size} {task_name} few shot prompt in ChatGLM3 Few Shot space repo (click submit to activate) : [{lora_repo_link}](https://huggingface.co/spaces/{lora_repo_link}) {emoji_info}"
31
+
32
+
33
  demo = gr.Interface(
34
  fn=demo_func,
35
  inputs=[gr.Text(label = "Context"),
 
37
  ],
38
  outputs="json",
39
  title=f"Chinese Context Dialogue Generator 🐰 demonstration",
40
+ #description = 'This _example_ was **drive** from <br/><b><h4>[https://github.com/svjack/Context2Dialogue](https://github.com/svjack/Context2Dialogue)</h4></b>\n',
41
+ description = description,
42
  examples=example_sample if example_sample else None,
43
  cache_examples = False
44
  )