svjack commited on
Commit
c5a921c
·
1 Parent(s): 605182c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +17 -2
app.py CHANGED
@@ -1,8 +1,13 @@
 
 
 
 
 
1
  from predict import *
2
  from reconstructor import *
3
  from transformers import BertTokenizer, GPT2LMHeadModel
4
 
5
- import os
6
  import gradio as gr
7
 
8
  model_path = "svjack/gpt-daliy-dialogue"
@@ -26,6 +31,15 @@ def demo_func(prefix, max_length):
26
  "Dialogue Context": l
27
  }
28
 
 
 
 
 
 
 
 
 
 
29
  demo = gr.Interface(
30
  fn=demo_func,
31
  inputs=[gr.Text(label = "Prefix"),
@@ -34,7 +48,8 @@ demo = gr.Interface(
34
  outputs="json",
35
  title=f"GPT Chinese Daliy Dialogue Generator 🐰 demonstration",
36
  examples=example_sample if example_sample else None,
37
- description = 'This _example_ was **drive** from <br/><b><h4>[https://github.com/svjack/Daliy-Dialogue](https://github.com/svjack/Daliy-Dialogue)</h4></b>\n',
 
38
  cache_examples = False
39
  )
40
 
 
1
+ import os
2
+ os.system("pip install huggingface_hub")
3
+
4
+ from huggingface_hub import space_info
5
+
6
  from predict import *
7
  from reconstructor import *
8
  from transformers import BertTokenizer, GPT2LMHeadModel
9
 
10
+ #import os
11
  import gradio as gr
12
 
13
  model_path = "svjack/gpt-daliy-dialogue"
 
31
  "Dialogue Context": l
32
  }
33
 
34
+ markdown_exp_size = "##"
35
+ lora_repo = "svjack/chatglm3-few-shot"
36
+ lora_repo_link = "svjack/chatglm3-few-shot/?input_list_index=10"
37
+ emoji_info = space_info(lora_repo).__dict__["cardData"]["emoji"]
38
+ space_cnt = 1
39
+ task_name = "[---Chinese Dialogue Generator---]"
40
+ 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}"
41
+
42
+
43
  demo = gr.Interface(
44
  fn=demo_func,
45
  inputs=[gr.Text(label = "Prefix"),
 
48
  outputs="json",
49
  title=f"GPT Chinese Daliy Dialogue Generator 🐰 demonstration",
50
  examples=example_sample if example_sample else None,
51
+ #description = 'This _example_ was **drive** from <br/><b><h4>[https://github.com/svjack/Daliy-Dialogue](https://github.com/svjack/Daliy-Dialogue)</h4></b>\n',
52
+ description = description,
53
  cache_examples = False
54
  )
55