text
stringlengths 143
695
|
---|
Task: Classify the sentiment of the given review as Positive or Negative.
Input: The movie was thrilling and visually stunning.
Output: Positive
Input: The plot was dull and the acting was mediocre.
Output: Negative
Input: The ambiance was lovely, and we enjoyed our evening.
Output: Positive |
Task: Classify the given message as Spam or Not Spam.
Input: You have been selected to win a free iPhone! Click here now.
Output: Spam
Input: Can we meet for coffee tomorrow?
Output: Not Spam
Input: Exclusive offer! Buy one, get one free today.
Output: Spam |
Task: Summarize the following passage in one sentence.
Input: The committee convened to discuss the rising energy costs, focusing on renewable energy solutions and reducing waste.
Output: The committee discussed rising energy costs and renewable solutions.
Input: Advances in technology have accelerated innovation in healthcare, improving patient outcomes.
Output: Technological advances are enhancing healthcare outcomes.
Input: The economic policies are changing global trade dynamics.
Output: Global trade dynamics are shifting due to economic policies. |
Task: Answer the question based on the provided passage.
Input: Passage: The Amazon rainforest is known for its vast biodiversity. It houses thousands of species.
Question: What is the Amazon rainforest known for?
Output: Vast biodiversity.
Input: Passage: The Eiffel Tower was constructed in 1889 and is one of the most recognizable landmarks.
Question: When was the Eiffel Tower constructed?
Output: 1889.
Input: Passage: The novel became a bestseller within weeks.
Question: What happened to the novel?
Output: It is a bestseller. |
Task: Translate the following English sentence into French.
Input: The library opens at nine in the morning.
Output: La bibliothèque ouvre à neuf heures du matin.
Input: I enjoy reading books in my free time.
Output: J'aime lire des livres pendant mon temps libre.
Input: The weather is beautiful today.
Output: Il fait beau aujourd'hui. |
Task: Complete the following sentence in a coherent manner.
Input: After finishing her work, Maria decided to...
Output: take a walk in the park.
Input: The children eagerly waited for the...
Output: ice cream truck to arrive.
Input: As the storm approached, the sky...
Output: turned dark and ominous. |
Task: Determine if the hypothesis is Entailment, Contradiction, or Neutral based on the premise.
Input: Premise: The cat is sleeping on the sofa.
Hypothesis: The cat is on the sofa.
Output: Entailment
Input: Premise: A man is riding a bicycle in the park.
Hypothesis: A man is driving a car.
Output: Contradiction
Input: Premise: The team is preparing for the match.
Hypothesis: The team is practicing.
Output: Entailment |
Task: Solve the math problem described.
Input: Emily had 5 oranges and bought 3 more. How many oranges does she have?
Output: 8
Input: There are 7 birds on a tree, and 2 flew away. How many remain?
Output: 5
Input: Tom had 10 candies and gave away 4.
Output: 6 |
Task: Extract all the named entities from the following sentence.
Input: Barack Obama was the 44th President of the United States.
Output: Barack Obama; United States
Input: London is known for its rich history and culture.
Output: London
Input: The conference will be held next month.
Output: None |
Task: Generate a paraphrase for the given sentence.
Input: The quick brown fox jumps over the lazy dog.
Output: A fast, brown fox leaps over a sluggish dog.
Input: She completed the project ahead of schedule.
Output: She finished the project earlier than planned.
Input: They enjoy reading books.
Output: They love to read. |
Task: Simplify the following complex sentence.
Input: The intricate mechanisms of the device were elucidated in the detailed manual.
Output: The device's parts were explained in the manual.
Input: Although the situation was complicated, she managed to resolve it effectively.
Output: She solved the complicated situation effectively.
Input: The process of photosynthesis is extremely complex.
Output: Photosynthesis is a complex process. |
Task: Rewrite the following sentence in a more informal tone.
Input: I am writing to inquire about the status of my application.
Output: Just checking in on my application status.
Input: Could you please provide further details regarding the event?
Output: Can you give me more details about the event?
Input: I would appreciate your prompt response.
Output: I’d appreciate a quick reply. |
Task: Generate an appropriate response for the following dialogue input.
Input: Person A: How are you doing today?
Output: Person B: I'm doing well, thanks! How about you?
Input: Person A: What's your favorite book?
Output: Person B: I really enjoy reading mystery novels.
Input: Person A: Are you free this weekend?
Output: Person B: Yes, I'd love to hang out. |
Task: Extract the main keywords from the following text.
Input: The conference on climate change focused on renewable energy, sustainability, and global warming.
Output: climate change; renewable energy; sustainability; global warming
Input: The article discusses advances in artificial intelligence and machine learning.
Output: artificial intelligence; machine learning
Input: New tech trends are emerging.
Output: tech trends. |
Task: Identify the topic of the given text.
Input: The discussion centered on the benefits of a plant-based diet.
Output: Health and Nutrition
Input: The article analyzes the economic impacts of inflation.
Output: Economics
Input: The text explores the mysteries of space.
Output: Astronomy |
Task: Identify the language of the following sentence.
Input: Hola, ¿cómo estás?
Output: Spanish
Input: Bonjour, je m'appelle Pierre.
Output: French
Input: Guten Tag, wie geht es dir?
Output: German |
Task: Correct the grammatical errors in the given sentence.
Input: She don't like going to the market.
Output: She doesn't like going to the market.
Input: They was playing soccer in the park.
Output: They were playing soccer in the park.
Input: He go to school every day.
Output: He goes to school every day. |
Task: Generate a Python code snippet that prints "Hello, World!".
Input: Write Python code to display a greeting message.
Output: print("Hello, World!")
Input: Create a simple Python script that outputs a welcome message.
Output: print("Welcome!")
Input: Write a Python program that shows a message.
Output: print("Greetings!") |
Task: Explain what the following Python code does.
Input: def add(a, b): return a + b
Output: It defines a function that returns the sum of a and b.
Input: for i in range(5): print(i)
Output: It prints numbers from 0 to 4.
Input: x = [i**2 for i in range(10)]
Output: It creates a list of squares for numbers 0 to 9. |
Task: Classify the sentiment of the tweet as Positive, Negative, or Neutral.
Input: "Just had the best coffee ever!"
Output: Positive
Input: "Ugh, stuck in traffic for hours."
Output: Negative
Input: "It's an ordinary day."
Output: Neutral |
Task: Summarize the following news article in one sentence.
Input: The government announced a new policy aimed at reducing carbon emissions and promoting renewable energy.
Output: The government introduced a policy to reduce carbon emissions and boost renewable energy.
Input: A major breakthrough in cancer research was reported by scientists today.
Output: Scientists reported a significant cancer research breakthrough.
Input: The stock market closed with gains.
Output: The stock market ended with positive gains. |
Task: Based on common sense, answer the following question.
Input: If it is raining outside, what is the most likely action for someone?
Output: They will likely take an umbrella.
Input: When someone is feeling cold, what might they do?
Output: They might put on a jacket.
Input: If the ground is wet after rain, what is a probable reason?
Output: It rained recently. |
Task: Convert the temperature from Fahrenheit to Celsius.
Input: Convert 68°F to Celsius.
Output: 20°C
Input: Convert 32°F to Celsius.
Output: 0°C
Input: Convert 100°F to Celsius.
Output: 37.8°C. |
Task: Correct the spelling mistakes in the sentence.
Input: The quik brown fox jumpped over the lazi dog.
Output: The quick brown fox jumped over the lazy dog.
Input: I recieved a lettre from my freind.
Output: I received a letter from my friend.
Input: She beleives in miracles.
Output: She believes in miracles. |
Task: Complete the following poetic line.
Input: The stars whispered secrets in the night...
Output: as the moon listened in silent awe.
Input: In the stillness of the dawn...
Output: the world awakens with gentle grace.
Input: The river flows with...
Output: quiet determination. |
Task: Answer the riddle.
Input: I speak without a mouth and hear without ears. I have no body, but I come alive with wind. What am I?
Output: An echo.
Input: What has keys but can't open locks?
Output: A piano.
Input: What runs but never walks?
Output: A river. |
Task: Provide a concise definition for the given word.
Input: Ephemeral
Output: Lasting for a very short time.
Input: Benevolent
Output: Well meaning and kindly.
Input: Serendipity
Output: The occurrence of fortunate events by chance. |
Task: Find the anagram of the given scrambled letters.
Input: "silent"
Output: "listen"
Input: "evil"
Output: "vile"
Input: "save"
Output: vase |
Task: Determine if the conclusion logically follows from the premises.
Input: Premise: All mammals are warm-blooded. Premise: All whales are mammals. Conclusion: All whales are warm-blooded.
Output: Yes
Input: Premise: All birds can fly. Premise: Penguins are birds. Conclusion: Penguins can fly.
Output: No
Input: Premise: All fruits contain seeds. Premise: Apples are fruits.
Output: Yes |
Task: Link the entities in the following sentence to their corresponding categories (e.g., Person, Location, Organization).
Input: Google was founded by Larry Page and Sergey Brin.
Output: Google (Organization); Larry Page (Person); Sergey Brin (Person)
Input: Apple released a new product in California.
Output: Apple (Organization); California (Location)
Input: The event took place in the city.
Output: City (Location) |
Task: Identify and extract the main event described in the text.
Input: The annual marathon attracted thousands of runners and raised funds for charity.
Output: Annual marathon fundraising event.
Input: A sudden blackout affected the entire neighborhood.
Output: Neighborhood blackout.
Input: A new store opened downtown.
Output: Store opening downtown. |
Task: Correct the subject-verb agreement in the following sentence.
Input: The list of items are on the table.
Output: The list of items is on the table.
Input: The group of students were excited about the trip.
Output: The group of students was excited about the trip.
Input: The bouquet of flowers look beautiful.
Output: The bouquet of flowers looks beautiful. |
Task: Generate a concise email subject line for the given email content.
Input: Content: I wanted to update you on the project status and upcoming deadlines.
Output: Project Update and Deadlines
Input: Content: Please find attached the minutes of our last meeting.
Output: Meeting Minutes Attached
Input: Content: Let's catch up over coffee sometime soon.
Output: Coffee Catch-Up Invitation. |
Task: Identify the sentiment for each aspect in the product review.
Input: Review: The camera's picture quality is excellent, but the battery life is disappointing.
Output: Picture quality: Positive; Battery life: Negative
Input: Review: The laptop is fast and lightweight, though the keyboard is uncomfortable.
Output: Speed: Positive; Weight: Positive; Keyboard: Negative
Input: Review: The phone's design is sleek.
Output: Design: Positive. |
Task: Detect the tone of the following social media post.
Input: "Can't believe how amazing this day has been!"
Output: Positive
Input: "I'm so over this, everything is going wrong."
Output: Negative
Input: "Today was just another day."
Output: Neutral |
Task: Generate a news headline for the following article.
Input: Article: The local government has announced a new initiative to improve public transportation in the city.
Output: City Launches New Public Transport Initiative
Input: Article: Scientists have discovered a breakthrough in renewable energy technology.
Output: Breakthrough in Renewable Energy Technology Unveiled
Input: Article: The community garden project has expanded to include more plots.
Output: Community Garden Project Expands. |
Task: Summarize the following article into bullet points.
Input: Article: The research team published a paper outlining the benefits of remote work, increased productivity, and better work-life balance.
Output: - Benefits of remote work; - Increased productivity; - Improved work-life balance
Input: Article: The company announced new product features, a price reduction, and expanded customer support.
Output: - New product features; - Price reduction; - Expanded customer support
Input: Article: The startup raised significant funding.
Output: - Significant funding raised; - Startup growth. |
Task: Determine if the following statement is sarcastic or not.
Input: "Oh great, another rainy day. Just what I needed."
Output: Sarcastic
Input: "I'm really looking forward to the meeting."
Output: Not Sarcastic
Input: "Well, that was unexpected."
Output: Not Sarcastic |
Task: Classify the following news headline as Fake or Real.
Input: Headline: "Scientists confirm that chocolate cures all diseases."
Output: Fake
Input: Headline: "Local school wins national award for academic excellence."
Output: Real
Input: Headline: "New study reveals miraculous weight loss in 7 days."
Output: Fake |
Task: Rewrite the following sentence to make it clearer and more concise.
Input: Due to the fact that the meeting was rescheduled, we were unable to attend.
Output: We missed the meeting because it was rescheduled.
Input: In light of recent developments, it has become necessary to revise the plan.
Output: Recent developments require a plan revision.
Input: The report, which was very long and detailed, is attached.
Output: The detailed report is attached. |
Task: Generate a humorous one-liner based on the prompt.
Input: Prompt: My computer just crashed, and I lost all my files.
Output: Well, at least now I have a clean slate to start over!
Input: Prompt: I tried to fix my car myself.
Output: Turns out, I'm better at driving than repairing.
Input: Prompt: My phone battery died mid-conversation.
Output: Now I have to talk to myself. |
Task: Verify the following statement as True or False.
Input: Statement: The Earth revolves around the Sun.
Output: True
Input: Statement: Humans can breathe underwater without assistance.
Output: False
Input: Statement: Water boils at 100°C at sea level.
Output: True |
Task: Determine the most likely cause for the following event.
Input: Event: The streets were flooded after the heavy rains.
Output: Heavy rainfall
Input: Event: The store closed due to a power outage.
Output: Power outage
Input: Event: The garden wilted.
Output: Lack of water. |
Task: Describe the scene depicted in the following description.
Input: Description: A serene lake surrounded by mountains during sunset.
Output: A calm lake with reflective waters framed by majestic mountains at sunset.
Input: Description: A bustling city street with neon lights and busy pedestrians.
Output: A vibrant urban scene with colorful lights and energetic crowds.
Input: Description: A quiet forest path.
Output: A peaceful forest path with dappled sunlight. |
Task: Generate a simple recipe using the provided ingredients.
Input: Ingredients: chicken, garlic, lemon, rosemary.
Output: Roast chicken with garlic, lemon, and rosemary.
Input: Ingredients: tomatoes, basil, mozzarella.
Output: Caprese salad with tomatoes, basil, and mozzarella.
Input: Ingredients: pasta, olive oil, garlic.
Output: Pasta with olive oil and garlic. |
Task: Solve the following algebra problem.
Input: Solve for x: 2x + 3 = 11.
Output: x = 4
Input: Solve for x: 3x - 5 = 10.
Output: x = 5
Input: Solve for x: 4x + 2 = 18.
Output: x = 4 |
Task: Generate a word that rhymes with the given word.
Input: Word: "blue"
Output: "true"
Input: Word: "night"
Output: "light"
Input: Word: "star"
Output: car |
Task: Create a simile using the word "as" based on the prompt.
Input: Prompt: "He is as brave as a..."
Output: lion
Input: Prompt: "Her smile is as bright as..."
Output: the sun
Input: Prompt: "This cake is as delicious as..."
Output: a masterpiece. |
Task: Predict the next word in the sentence.
Input: Sentence: "The cat sat on the"
Output: mat
Input: Sentence: "She opened the door and saw a"
Output: stranger
Input: Sentence: "The sun rises in the"
Output: east |
Task: Continue the following story in a coherent manner.
Input: Story: "Once upon a time in a small village, there was a mysterious forest..."
Output: "The villagers whispered tales of magic and ancient secrets."
Input: Story: "In a bustling city, a young detective uncovered a hidden conspiracy..."
Output: "Clues led him to unexpected allies and dangerous adversaries."
Input: Story: "The old mansion was filled with secrets."
Output: Hidden chambers and untold stories lie within. |
Task: Identify and fix the error in the following Python code.
Input: Code: "for i in range(5) print(i)"
Output: "for i in range(5): print(i)"
Input: Code: "if x == 10 print('x is 10')"
Output: "if x == 10: print('x is 10')"
Input: Code: "while True print('Loop')"
Output: "while True: print('Loop')" |
Task: Complete the following song lyric.
Input: Lyric: "When I find myself in times of trouble..."
Output: "Mother Mary comes to me."
Input: Lyric: "Let it be, let it be..."
Output: "Whisper words of wisdom, let it be."
Input: Lyric: "Yesterday, all my troubles..."
Output: seemed so far away. |
Task: Generate a professional summary for a resume based on the following details.
Input: Details: "Experienced software developer with 5 years in web development and a passion for innovative solutions."
Output: "Skilled software developer with 5 years' experience in web development and a track record of innovative solutions."
Input: Details: "Marketing specialist with expertise in digital campaigns and brand strategy."
Output: "Digital marketing specialist with a focus on successful campaigns and effective brand strategy."
Input: Details: "Project manager with a background in agile methodologies."
Output: Project manager experienced in agile methodologies and effective team leadership. |
Task: Summarize the key points of the following financial report.
Input: Report: "The company reported a 10% increase in revenue and a 5% reduction in costs, leading to improved profitability."
Output: "Revenue up 10%, costs down 5%, profitability improved."
Input: Report: "The quarterly report highlighted steady growth and strong market performance."
Output: "Steady growth with strong market performance."
Input: Report: "New financial data released."
Output: New financial data released. |
Task: Summarize the conversation in the following dialogue.
Input: Dialogue: "Alice: Hi, how are you? Bob: I'm good, thanks. Alice: Want to grab coffee later? Bob: Sure, let's meet at 3 PM."
Output: Conversation about meeting for coffee.
Input: Dialogue: "John: Did you finish the report? Mary: Yes, I emailed it this morning. John: Great, thanks."
Output: Discussion regarding the completion and submission of a report.
Input: Dialogue: "Tom: Are you coming to the party?"
Output: Inquiry about attendance at a party. |
No dataset card yet
- Downloads last month
- 19