Gosula commited on
Commit
55e2242
·
1 Parent(s): 569d938

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -22,7 +22,7 @@ def QLoRA_Chatgpt(prompt):
22
  return(result[0]['generated_text'])
23
  # return "Hello " + name + "!!"
24
  # Define Interface
25
- description = 'An AI assistant that works on the Microsoft Phi 2 model, which has been trained specifically on the Open Assistant dataset using the QLora method, operates effectively.Link to the model: https://huggingface.co/microsoft/phi-2 Link to the dataset: https://huggingface.co/datasets/OpenAssistant/oasst1 '
26
  title = 'AI Chat bot finetuned on Microsoft Phi 2 model using QLORA'
27
  iface = gr.Interface(fn=QLoRA_Chatgpt, inputs=gr.Textbox("how can help you today", label='prompt'), outputs=gr.Textbox(label='Generated-output',scale = 2), title = title,
28
  description = description)
 
22
  return(result[0]['generated_text'])
23
  # return "Hello " + name + "!!"
24
  # Define Interface
25
+ description = 'An AI assistant that works on the Microsoft Phi 2 model, which has been finetuned on the Open Assistant dataset using the QLora method, operates effectively. '
26
  title = 'AI Chat bot finetuned on Microsoft Phi 2 model using QLORA'
27
  iface = gr.Interface(fn=QLoRA_Chatgpt, inputs=gr.Textbox("how can help you today", label='prompt'), outputs=gr.Textbox(label='Generated-output',scale = 2), title = title,
28
  description = description)