karanzrk commited on
Commit
36f98fe
·
1 Parent(s): bf05873

Update space

Browse files
Files changed (1) hide show
  1. app.py +74 -45
app.py CHANGED
@@ -4,59 +4,88 @@ from huggingface_hub import InferenceClient
4
  """
5
  For more information on `huggingface_hub` Inference API support, please check the docs: https://huggingface.co/docs/huggingface_hub/v0.22.2/en/guides/inference
6
  """
7
- client = InferenceClient("karanzrk/bert-Causal-QA")
8
 
 
 
 
9
 
10
- def respond(
11
- message,
12
- history: list[tuple[str, str]],
13
- system_message,
14
- max_tokens,
15
- temperature,
16
- top_p,
17
- ):
18
- messages = [{"role": "system", "content": system_message}]
19
 
20
- for val in history:
21
- if val[0]:
22
- messages.append({"role": "user", "content": val[0]})
23
- if val[1]:
24
- messages.append({"role": "assistant", "content": val[1]})
25
 
26
- messages.append({"role": "user", "content": message})
 
 
27
 
28
- response = ""
 
29
 
30
- for message in client.chat_completion(
31
- messages,
32
- max_tokens=max_tokens,
33
- stream=True,
34
- temperature=temperature,
35
- top_p=top_p,
36
- ):
37
- token = message.choices[0].delta.content
38
 
39
- response += token
40
- yield response
41
 
42
- """
43
- For information on how to customize the ChatInterface, peruse the gradio docs: https://www.gradio.app/docs/chatinterface
44
- """
45
- demo = gr.ChatInterface(
46
- respond,
47
- additional_inputs=[
48
- gr.Textbox(value="Question: ", label="System message"),
49
- gr.Slider(minimum=1, maximum=128, value=512, step=1, label="Max new tokens"),
50
- gr.Slider(minimum=0.1, maximum=4.0, value=0.7, step=0.1, label="Temperature"),
51
- gr.Slider(
52
- minimum=0.1,
53
- maximum=1.0,
54
- value=0.95,
55
- step=0.05,
56
- label="Top-p (nucleus sampling)",
57
- ),
58
- ],
59
- )
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
60
 
61
 
62
  if __name__ == "__main__":
 
4
  """
5
  For more information on `huggingface_hub` Inference API support, please check the docs: https://huggingface.co/docs/huggingface_hub/v0.22.2/en/guides/inference
6
  """
7
+ # client = InferenceClient("karanzrk/bert-Causal-QA")
8
 
9
+ from transformers import pipeline
10
+ generator = pipeline('text-generation', model = 'karanzrk/bert-Causal-QA')
11
+ # generator("Hello, I'm a language model", max_length = 30, num_return_sequences=3)
12
 
 
 
 
 
 
 
 
 
 
13
 
 
 
 
 
 
14
 
15
+ # def respond(
16
+ # message,
17
+ # max_tokens,
18
 
19
+ # ):
20
+ # messages = [{"role": "system", "content": system_message}]
21
 
22
+ # for val in history:
23
+ # if val[0]:
24
+ # messages.append({"role": "user", "content": val[0]})
25
+ # if val[1]:
26
+ # messages.append({"role": "assistant", "content": val[1]})
 
 
 
27
 
28
+ # messages.append({"role": "user", "content": message})
 
29
 
30
+ # response = ""
31
+
32
+ # for message in client.chat_completion(
33
+ # messages,
34
+ # max_tokens=max_tokens,
35
+ # stream=True,
36
+ # temperature=temperature,
37
+ # top_p=top_p,
38
+ # ):
39
+ # token = message.choices[0].delta.content
40
+
41
+ # response += token
42
+ # yield response
43
+
44
+ # """
45
+ # For information on how to customize the ChatInterface, peruse the gradio docs: https://www.gradio.app/docs/chatinterface
46
+ # """
47
+ # demo = gr.ChatInterface(
48
+ # respond,
49
+ # additional_inputs=[
50
+ # gr.Textbox(value="Question: ", label="System message"),
51
+ # gr.Slider(minimum=1, maximum=128, value=512, step=1, label="Max new tokens"),
52
+ # gr.Slider(minimum=0.1, maximum=4.0, value=0.7, step=0.1, label="Temperature"),
53
+ # gr.Slider(
54
+ # minimum=0.1,
55
+ # maximum=1.0,
56
+ # value=0.95,
57
+ # step=0.05,
58
+ # label="Top-p (nucleus sampling)",
59
+ # ),
60
+ # ],
61
+ # )
62
+
63
+ def inference(text):
64
+ # classifier = pipeline("text-classification", model="karanzrk/essayl0")
65
+ text = "Question: " + text
66
+ output = generator(text)
67
+ return output
68
+
69
+ # launcher = gr.Interface(
70
+ # fn=inference,
71
+ # inputs=gr.Textbox(lines=5, placeholder="Essay here...."),
72
+ # outputs="text"
73
+ # )
74
+
75
+ with gr.Blocks() as demo:
76
+ gr.Markdown(
77
+ """
78
+ # Welcome to bert-demo
79
+ Ask your question
80
+ """
81
+ )
82
+ inputs = gr.Textbox(label="Input Box",lines = 5, placeholder="Question: ")
83
+ button = gr.Button("Grade!")
84
+ output = gr.Textbox(label="Output Box")
85
+ button.click(fn=inference, inputs=inputs, outputs = output, api_name="Autograde")
86
+
87
+
88
+ demo.launch()
89
 
90
 
91
  if __name__ == "__main__":