padmanabhbosamia commited on
Commit
fd6b90a
·
verified ·
1 Parent(s): d2058e8

Changes to app.py

Browse files
Files changed (1) hide show
  1. app.py +24 -5
app.py CHANGED
@@ -174,10 +174,25 @@ with gr.Blocks(css=custom_css, theme=gr.themes.Soft()) as demo:
174
  ### Example Prompts
175
  Try these example prompts to test the model:
176
 
177
- 1. **Technical Question**: "What is machine learning?"
178
- 2. **Creative Writing**: "Write a short story about a robot learning to paint."
179
- 3. **Technical Explanation**: "Explain quantum computing in simple terms."
180
- 4. **Creative Writing**: "Write a poem about artificial intelligence."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
181
  """,
182
  elem_classes="description"
183
  )
@@ -188,7 +203,11 @@ with gr.Blocks(css=custom_css, theme=gr.themes.Soft()) as demo:
188
  ["What is machine learning?"],
189
  ["Write a short story about a robot learning to paint."],
190
  ["Explain quantum computing in simple terms."],
191
- ["Write a poem about artificial intelligence."]
 
 
 
 
192
  ],
193
  inputs=prompt
194
  )
 
174
  ### Example Prompts
175
  Try these example prompts to test the model:
176
 
177
+ 1. **Technical Questions**:
178
+ - "What is machine learning?"
179
+ - "What is deep learning?"
180
+ - "Explain quantum computing in simple terms."
181
+
182
+ 2. **Creative Writing**:
183
+ - "Write a short story about a robot learning to paint."
184
+ - "Write a story about a time-traveling smartphone."
185
+ - "Write a poem about artificial intelligence."
186
+
187
+ 3. **Technical Explanations**:
188
+ - "How does neural network training work?"
189
+ - "What is the difference between supervised and unsupervised learning?"
190
+ - "Explain the concept of transfer learning."
191
+
192
+ 4. **Creative Tasks**:
193
+ - "Write a fairy tale about a computer learning to dream."
194
+ - "Create a story about an AI becoming an artist."
195
+ - "Write a poem about the future of technology."
196
  """,
197
  elem_classes="description"
198
  )
 
203
  ["What is machine learning?"],
204
  ["Write a short story about a robot learning to paint."],
205
  ["Explain quantum computing in simple terms."],
206
+ ["Write a poem about artificial intelligence."],
207
+ ["What is deep learning?"],
208
+ ["Write a story about a time-traveling smartphone."],
209
+ ["How does neural network training work?"],
210
+ ["Write a fairy tale about a computer learning to dream."]
211
  ],
212
  inputs=prompt
213
  )