Chintan-Shah commited on
Commit
595a507
1 Parent(s): ee80f82

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -37,7 +37,7 @@ def generateText(inputText="What is QLora finetuning?", num_tokens=200):
37
 
38
 
39
  title = "Fine tuned Phi3.5 instruct model on OpenAssist dataset using QLora"
40
- description = "Fine tuned Phi3.5 instruct model on OpenAssist dataset using QLora"
41
  examples = [
42
  ["How can I optimize my web page for online search so that it is on top?", 200],
43
  ["Can you give me an example of python script for Fibonacci series?", 200],
@@ -49,7 +49,7 @@ demo = gr.Interface(
49
  generateText,
50
  inputs = [
51
  gr.Textbox(label="Question that you want to ask"),
52
- gr.Slider(100, 500, value = 200, step=100, label="Number of chars that you want in your output"),
53
  ],
54
  outputs = [
55
  gr.Text(),
 
37
 
38
 
39
  title = "Fine tuned Phi3.5 instruct model on OpenAssist dataset using QLora"
40
+ description = "Fine tuned Phi3.5 instruct model on OpenAssist dataset using QLora. Running on CPU and thus a bit slow. So please be patient on submitting a request as it might take 15 to 20 minutes for a response."
41
  examples = [
42
  ["How can I optimize my web page for online search so that it is on top?", 200],
43
  ["Can you give me an example of python script for Fibonacci series?", 200],
 
49
  generateText,
50
  inputs = [
51
  gr.Textbox(label="Question that you want to ask"),
52
+ gr.Slider(100, 500, value = 200, step=100, label="Number of tokens that you want in your output"),
53
  ],
54
  outputs = [
55
  gr.Text(),