awacke1 commited on
Commit
3dd5173
Β·
1 Parent(s): 071e5a0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -1
app.py CHANGED
@@ -96,14 +96,23 @@ with gr.Blocks(css=css) as demo:
96
  additional_inputs=additional_inputs,
97
  examples = [
98
  ["🐍 Write a Python Streamlit program that shows a thumbs up and thumbs down button for scoring an evaluation. When the user clicks, maintain a saved text file that tracks and shows the number of clicks with a refresh and sorts responses by the number of clicks."],
99
- ["πŸ“Š Create a Pandas DataFrame and display it using Streamlit. Use emojis to indicate the status of each row (e.g., βœ… for good, ❌ for bad)."],
 
 
 
100
  ["πŸ—‚ Using Gradio, create a simple interface where users can upload a CSV file and filter the data based on selected columns."],
101
  ["πŸ˜ƒ Implement emoji reactions in a Streamlit app. When a user clicks on an emoji, record the click count in a Pandas DataFrame and display the DataFrame."],
 
102
  ["πŸ”— Create a program that fetches a dataset from Huggingface Hub and shows basic statistics about it using Pandas in a Streamlit app."],
 
 
103
  ["πŸ€– Use Gradio to create a user interface for a text summarizer model from Huggingface Hub."],
104
  ["πŸ“ˆ Create a Streamlit app to visualize time series data. Use Pandas to manipulate the data and plot it using Streamlit’s native plotting options."],
 
 
105
  ["πŸŽ™ Implement a voice-activated feature in a Gradio interface. Use a pre-trained model from Huggingface Hub for speech recognition."],
106
  ["πŸ” Create a search function in a Streamlit app that filters through a Pandas DataFrame and displays the results."],
 
107
  ["πŸ€— Write a Python script that uploads a model to Huggingface Hub and then uses it in a Streamlit app."],
108
  ["πŸ‘ Create a Gradio interface for a clapping hands emoji (πŸ‘) counter. When a user inputs a text, the interface should return the number of clapping hands emojis in the text."],
109
  ["πŸ“œ Use Pandas to read an Excel sheet in a Streamlit app. Allow the user to select which sheet they want to view."],
 
96
  additional_inputs=additional_inputs,
97
  examples = [
98
  ["🐍 Write a Python Streamlit program that shows a thumbs up and thumbs down button for scoring an evaluation. When the user clicks, maintain a saved text file that tracks and shows the number of clicks with a refresh and sorts responses by the number of clicks."],
99
+ ["🐍 Write a Python Gradio program that shows a thumbs up and thumbs down button for scoring an evaluation. When the user clicks, maintain a saved text file that tracks and shows the number of clicks with a refresh and sorts responses by the number of clicks."],
100
+ ["πŸ“Š Write a Python Streamlit program that creates a Pandas DataFrame and display it using Streamlit. Use emojis to indicate the status of each row (e.g., βœ… for good, ❌ for bad)."],
101
+ ["πŸ“Š Write a Python Gradio program that creates a Pandas DataFrame and display it using Streamlit. Use emojis to indicate the status of each row (e.g., βœ… for good, ❌ for bad)."],
102
+ ["πŸ—‚ Using Streamlit, create a simple interface where users can upload a CSV file and filter the data based on selected columns."],
103
  ["πŸ—‚ Using Gradio, create a simple interface where users can upload a CSV file and filter the data based on selected columns."],
104
  ["πŸ˜ƒ Implement emoji reactions in a Streamlit app. When a user clicks on an emoji, record the click count in a Pandas DataFrame and display the DataFrame."],
105
+ ["πŸ˜ƒ Implement emoji reactions in a Gradio app. When a user clicks on an emoji, record the click count in a Pandas DataFrame and display the DataFrame."],
106
  ["πŸ”— Create a program that fetches a dataset from Huggingface Hub and shows basic statistics about it using Pandas in a Streamlit app."],
107
+ ["πŸ”— Create a program that fetches a dataset from Huggingface Hub and shows basic statistics about it using Pandas in a Gradio app."],
108
+ ["πŸ€– Use Streamlit to create a user interface for a text summarizer model from Huggingface Hub."],
109
  ["πŸ€– Use Gradio to create a user interface for a text summarizer model from Huggingface Hub."],
110
  ["πŸ“ˆ Create a Streamlit app to visualize time series data. Use Pandas to manipulate the data and plot it using Streamlit’s native plotting options."],
111
+ ["πŸ“ˆ Create a Gradio app to visualize time series data. Use Pandas to manipulate the data and plot it using Streamlit’s native plotting options."],
112
+ ["πŸŽ™ Implement a voice-activated feature in a Streamlit interface. Use a pre-trained model from Huggingface Hub for speech recognition."],
113
  ["πŸŽ™ Implement a voice-activated feature in a Gradio interface. Use a pre-trained model from Huggingface Hub for speech recognition."],
114
  ["πŸ” Create a search function in a Streamlit app that filters through a Pandas DataFrame and displays the results."],
115
+ ["πŸ” Create a search function in a Gradio app that filters through a Pandas DataFrame and displays the results."],
116
  ["πŸ€— Write a Python script that uploads a model to Huggingface Hub and then uses it in a Streamlit app."],
117
  ["πŸ‘ Create a Gradio interface for a clapping hands emoji (πŸ‘) counter. When a user inputs a text, the interface should return the number of clapping hands emojis in the text."],
118
  ["πŸ“œ Use Pandas to read an Excel sheet in a Streamlit app. Allow the user to select which sheet they want to view."],