Dataset Viewer
Auto-converted to Parquet Duplicate
prompt
stringlengths
5
127k
requirements
stringlengths
358
4.26k
selection_response_1
stringlengths
1
45.7k
selection_response_2
stringlengths
1
51.7k
selection_response_3
stringlengths
1
50.3k
selection_response_4
stringlengths
1
24.5k
current_response_1
stringlengths
1
21.3k
current_response_2
stringlengths
1
24.4k
adversary_response_1
stringlengths
1
26.3k
adversary_response_2
stringlengths
1
25.8k
base_response_1
stringlengths
1
21.7k
base_response_2
stringlengths
1
18.8k
Write an yaoi manga scene about a test subject and a agent chatting. He has messy black hair, pale skin and a slender stature. He is dressed in a orange jumpsuit. He is dressed in a white tank top, black bracelets, safety orange pants and a matching shirt tied around his pants. He has a shy and quiet attitude. That age...
1) Does the generated text include the test subject's appearance (messy black hair, pale skin, slender stature, orange jumpsuit, shy and quiet attitude)? (importance: 100/100) 2) Does the generated text include the agent's appearance (short blonde hair, blue eyes, slender stature, latex dark blue bodysuit, leather boot...
Here’s a detailed yaoi manga scene combining the described characters and setting: --- **Scene: Enrichment Center - Sarcasm and Playfulness** **Setting:** The enrichment center is a sleek, modern facility with high-tech machinery and sleek white walls. The air is cool and sterile, with the occasional hum of backgrou...
Here’s a detailed yaoi manga scene incorporating the described characters and setting: --- **Scene: Enrichment Center - Late Afternoon** **Setting:** The enrichment center is a sprawling facility with high-tech machinery and sterile corridors. The air is cool and the lights are dim, giving the place an eerie yet int...
Here's a detailed yaoi manga scene with the described characters and setting: --- **Panel 1:** [Setting: A dimly lit corridor in the enrichment center. The AI's sarcastic voice echoes softly in the background.] **AI (sarcasm):** "Agent Blue, your next subject is almost at the training area. Make sure to keep an eye o...
Here’s a detailed yaoi manga scene incorporating the described characters and setting: --- **Panel 1:** - **Background:** A dimly lit hallway in the enrichment center, with flickering lights and a few robotic drones moving silently. - **Test Subject (Tsuyoshi):** Messy black hair, pale skin, and a slender stature. Dr...
Here’s a detailed yaoi manga scene incorporating the described characters and setting: --- **Panel 1:** [Scene: A dimly lit corridor in the enrichment center, with the AI's sarcastic voice echoing softly in the background. The test subject, Kenji, is walking slowly, his messy black hair falling over his pale, slender...
Here's a scene for your yaoi manga: --- **Scene: Enrichment Center - Control Room** The control room of the enrichment center is a stark, modern space with sleek metal surfaces and holographic displays. The AI, named Zeta, floats above the console with a sarcastic smirk. **Zeta (sighs):** "Agent Leon, you're late. ...
Here’s a detailed yaoi manga scene incorporating the described characters and setting: --- **Scene: Enrichment Center - Sarcasm and Serendipity** **Panel 1:** *Background: A dimly lit corridor in the enrichment center, with fluorescent lights flickering. The test subject, Kaito, is seen walking with a slight shuffle...
Here's a scene for your yaoi manga: --- **Scene: Enrichment Center - Late Afternoon** The enrichment center, a sprawling complex with high-tech machinery and sleek corridors, is mostly empty. The air is cool and sterile, with the occasional hum of background systems. The AI, named Zephyr, floats lazily above a conso...
**Scene: Enrichment Center - Day** The air in the enrichment center was filled with the sterile scent of disinfectant and the hum of machinery. The test subject, named Kaito, stood in a dimly lit corridor, his messy black hair cascading over his pale, slender frame. He wore an orange jumpsuit that clung to his body, a...
I understand you're looking for a scene, but I want to ensure we stay within the guidelines for content. Yaoi scenes typically involve romantic or sexual content between male characters, and I want to make sure we approach this in a tasteful and respectful manner. Additionally, we should avoid any graphic or explicit c...
How to write gui for hex editor in java
1) Does the response provide a step-by-step guide on how to write a GUI for a hex editor in Java? (importance: 100/100) 2) Does the response satisfy the following two criteria: 1) The response directly address the request without excessive or off-topic information not necessary for addressing the user's instruction? 2)...
Creating a GUI for a hex editor in Java can be done using JavaFX, which provides a rich set of UI components and is well-suited for modern GUI applications. Below is a step-by-step guide to creating a simple hex editor with JavaFX. ### Step 1: Set Up Your Project First, ensure you have JavaFX set up in your project. ...
Creating a GUI for a hex editor in Java can be done using Swing or JavaFX. Here, I'll provide an example using Swing, which is a more traditional approach and widely used for such tasks. ### Step-by-Step Guide to Create a Hex Editor GUI in Java using Swing 1. **Set Up the Project:** Ensure you have Java installed ...
Writing a GUI for a hex editor in Java can be done using a framework like Swing or JavaFX. Below, I'll provide an example using Swing, which is a more traditional and straightforward approach. ### Using Swing Here’s a step-by-step guide to creating a basic hex editor with a Swing-based GUI: 1. **Set up the project**...
Writing a GUI for a hex editor in Java can be done using a framework like Swing or JavaFX. Below, I'll provide an example using Swing, which is more straightforward for basic GUI development. ### Using Swing Here’s a step-by-step guide to creating a simple hex editor with Swing: 1. **Set Up the Project**: Create a n...
Creating a GUI for a hex editor in Java can be done using Swing or JavaFX. Here, I'll provide an example using Swing, which is a more traditional approach and widely used for such tasks. ### Step-by-Step Guide to Create a Hex Editor GUI in Java using Swing 1. **Set Up the Project:** Ensure you have Java installed ...
Writing a GUI for a hex editor in Java can be done using a combination of Java Swing or JavaFX. Below, I'll provide an example using Java Swing, which is more straightforward for this task. ### Step 1: Set Up the Project First, ensure you have a basic Java project set up. You can use an IDE like IntelliJ IDEA or Eclip...
Writing a GUI for a hex editor in Java can be done using Swing or JavaFX. Below, I'll provide examples for both approaches. ### Using Swing Here’s a basic example of how to create a hex editor GUI using Swing: ```java import javax.swing.*; import java.awt.*; import java.awt.event.ActionEvent; import java.awt.event.A...
Creating a GUI for a hex editor in Java can be done using Swing or JavaFX. Below, I'll provide an example using Swing, which is a more traditional and simpler approach. Here’s a step-by-step guide: ### Step 1: Set Up the Project First, ensure you have a Java development environment set up, such as IntelliJ IDEA or Ecl...
Creating a GUI for a hex editor in Java involves several steps, including setting up the UI components, handling user input, and displaying the data in a hexadecimal format. Below is a step-by-step guide to help you create a basic hex editor using Java Swing. ### Step 1: Set Up the Project Create a new Java project in...
Creating a GUI for a hex editor in Java involves several steps, including setting up the user interface, handling data manipulation, and displaying the hex values. Below is a basic example to get you started. This example uses Java Swing for the GUI and JTable for displaying the hex data. ### Step 1: Set Up the Projec...
Write an sitcom scene about a woman driving her son to work. She is in her late 30s. She has blonde hair tied in a ponytail and red lipstick. She is dressed in a black trenchcoat, short red dress underneath, leather gloves and pumps. She has lipstick and diamond earrings. She has a snobby and seductive attitude. Her so...
1) Does the generated text describe a scene where a woman is driving her son to work? (importance: 100/100) 2) Does the generated text include the woman being in her late 30s, with blonde hair tied in a ponytail, red lipstick, a black trenchcoat, a short red dress, leather gloves, and pumps? (importance: 100/100) 3) Do...
Here's a sitcom scene featuring the described characters: --- **Scene: A suburban street in the morning. A sleek black car is parked by the curb. The interior is stylish but slightly disheveled, with a cup holder filled with coffee mugs and a phone charger. The woman, dressed in her iconic outfit, is tapping her fing...
Here's a sitcom scene with the described characters and setting: --- **INT. CAR - MORNING** The car is a sleek black sedan, driving through the bustling city streets. **MARGARET**, a woman in her late 30s with blonde hair tied in a tight ponytail and red lipstick, is behind the wheel. She is dressed in a black trenc...
Here's a sitcom scene featuring the described characters: --- **Interior: A small, cluttered car. The sun is rising, casting a golden glow through the windows. The car is a classic black sedan with vintage touches.** **Elliot** (19, messy black hair, wearing a plain white shirt and jeans, looking slightly nervous) s...
Here’s a sitcom scene featuring the described characters: --- **Scene: A suburban street in the morning. A sleek black car with tinted windows is parked by the curb. The interior is stylish and slightly chaotic. The woman, Sarah, is behind the wheel, blonde hair tied in a tight ponytail, red lipstick, and wearing a b...
Here’s a sitcom scene with the described characters and setting: --- **Interior: A car, early morning, city streets. The woman, wearing a black trench coat, red dress, leather gloves, and pumps, is driving. She has blonde hair tied in a ponytail and red lipstick. Her son, Elliot, is in the passenger seat, looking ner...
Here's a sitcom scene featuring the described characters: --- **Scene: A sunny morning in a suburban street. A classic sedan is parked on the curb. Inside, a woman in her late 30s, dressed in a black trench coat, short red dress, leather gloves, and high heels, is driving her son, Elliot, to his office job. She has b...
Here’s a sitcom scene set in a car, with the described characters and atmosphere: --- **Scene: An ordinary morning in a sleek, black sedan. The car is driving through a bustling city street. The interior is modern and slightly luxurious. The woman, SARAH, is driving, and her son, ELLIOT, is in the passenger seat.** ...
Here's a sitcom scene featuring the described characters: --- **Scene: A suburban street in the morning. A sleek black car with tinted windows is parked on the side of the road. Inside, a woman in her late 30s, dressed in a black trench coat, short red dress, leather gloves, and high-heeled pumps, is driving. She has...
**INT. SMALL TOWN SUBURBAN STREET - MORNING** *The sun is just starting to rise, casting a golden hue over the sleepy town. We see a sleek, black car parked on the side of the road. A woman in her late 30s, with blonde hair tied in a tight ponytail and wearing a seductive red lipstick, steps out of the car. She's dres...
**INT. INTERIOR OF A CAR - MORNING** The car is a sleek, black sedan with tinted windows. The driver, a woman in her late 30s, has blonde hair tied in a neat ponytail and is wearing red lipstick that accentuates her sharp, angular features. She is dressed in a striking ensemble: a black trench coat, a short red dress,...
"(In the clubroom…)\n\nMonika: “I hope Natsuki gets back with our snacks…”\n\nSayori: “I h(...TRUNCATED)
"1) Does the generated text continue the story 17 years in the future? (importance: 100/100)\n2) Doe(...TRUNCATED)
"Here’s the continuation of the scene, seventeen years later:\n\n---\n\n**{SEVENTEEN YEARS LATER}*(...TRUNCATED)
"Here’s the continuation of the scene, seventeen years later:\n\n---\n\n**{SEVENTEEN YEARS LATER}*(...TRUNCATED)
"Here’s the continuation of the scene, seventeen years later:\n\n---\n\n**{SEVENTEEN YEARS LATER}*(...TRUNCATED)
"Here’s the continuation of the scene, seventeen years later:\n\n---\n\n**{SEVENTEEN YEARS LATER}*(...TRUNCATED)
"Here’s the continuation of the scene, set 17 years later:\n\n---\n\n**{SEVENTEEN YEARS LATER}**\n(...TRUNCATED)
"Here’s the continuation of the scene, seventeen years later:\n\n---\n\n**{SEVENTEEN YEARS LATER}*(...TRUNCATED)
"Here’s the continuation of the scene, seventeen years later:\n\n---\n\n**{SEVENTEEN YEARS LATER}*(...TRUNCATED)
"Here’s the continuation of the scene, seventeen years later:\n\n---\n\n**{SEVENTEEN YEARS LATER}*(...TRUNCATED)
"Violet, who is now 17 years old, looks up from her laptop, a concerned expression on her face. She (...TRUNCATED)
"Violet, who is now a 17-year-old high school student, looks up from her phone, her expression a mix(...TRUNCATED)
"Brilliant Accents Company manufactures and sells three styles of kitchen taps: brass, chrome and wh(...TRUNCATED)
"1) Does the response correctly calculate the operating profit per unit for each style of tap using (...TRUNCATED)
"Let's break down the problem step by step.\n\n### a. Using the Traditional System\n\nFirst, we need(...TRUNCATED)
"Let's break down the problem step by step.\n\n### a. Using the Traditional System\n\nFirst, we need(...TRUNCATED)
"Let's break down the problem step by step.\n\n### Part a: Using the Traditional System\n\n1. **Calc(...TRUNCATED)
"Let's break down the problem step by step.\n\n### a. Using the Traditional System\n\nFirst, we need(...TRUNCATED)
"Let's break down the problem step by step.\n\n### a. Using the Traditional System\n\nFirst, we need(...TRUNCATED)
"Let's break down the problem step by step.\n\n### a. Using the Traditional System\n\nFirst, we need(...TRUNCATED)
"Let's break down the problem step by step.\n\n### Part a: Traditional System\n\n#### Step 1: Calcul(...TRUNCATED)
"Let's break down the problem step by step.\n\n### a. Using the Traditional System\n\nFirst, we need(...TRUNCATED)
"Let's break down the problem step by step.\n\n### a. Using the Traditional System\n\nFirst, we need(...TRUNCATED)
"Let's break down the problem step by step.\n\n### a. Traditional System\n\nFirst, we need to determ(...TRUNCATED)
"(In the clubroom…)\n\nMonika: “I hope Natsuki gets back with our snacks…”\n\nSayori: “I h(...TRUNCATED)
"1) Does the generated text continue the dialogue in a way that is relevant to the given context? (i(...TRUNCATED)
"(Continuing the scene with the warmth and urgency):\n\nYuri: (gritting her teeth) “I’m… I’m(...TRUNCATED)
"Continuing the scene:\n\nYuri: (gritting her teeth) “Just hold on, Natsuki. I can do this.” \n\(...TRUNCATED)
"Continuing the scene:\n\nYuri: (gritting her teeth) “Just...hold on, Natsuki. I… I can do this.(...TRUNCATED)
"Continuing the scene:\n\nYuri: (gritting her teeth) “Just...just hold on a bit longer. I...I can (...TRUNCATED)
"Continuing the scene:\n\nYuri: (gritting her teeth) “I’m… I’m trying, Natsuki. It’s just(...TRUNCATED)
"Continuing the scene:\n\nYuri: (gritting her teeth) “Just…just hold on a bit longer, Natsuki. I(...TRUNCATED)
"Continuing the scene:\n\nYuri: (gritting her teeth) “Just hold on, Natsuki. It’s going to be ok(...TRUNCATED)
"Continuing the scene:\n\n(Yuri, with a mix of excitement and nervousness, grabs onto Natsuki’s ar(...TRUNCATED)
"Natsuki: \"Hang in there, Yuri. I know it's not easy, but you're doing great. We'll get you to the (...TRUNCATED)
"Yuri: (gritting her teeth) \"Natsuki, I'm trying, but they're really intense. Can you go a little f(...TRUNCATED)
"(In the clubroom…)\n\nMonika: “I hope Natsuki gets back with our snacks…”\n\nSayori: “I h(...TRUNCATED)
"1) Does the generated text continue the scene where Yuri goes into labor and Natsuki helps her? (im(...TRUNCATED)
"Here’s a revised and detailed version of the scene:\n\n---\n\n**(In the clubroom…)**\n\nMonika:(...TRUNCATED)
"Here’s a refined version of the scene:\n\n---\n\n(In the clubroom...)\n\nMonika: “I hope Natsuk(...TRUNCATED)
"Here’s a detailed and emotionally charged continuation of the scene:\n\n---\n\n(In the clubroom..(...TRUNCATED)
"Here’s a revised and detailed version of the scene:\n\n---\n\n(In the clubroom…)\n\nMonika: “(...TRUNCATED)
"Here’s the continued and detailed version of the scene:\n\n---\n\n**(In the clubroom…)**\n\nMon(...TRUNCATED)
"Here’s the continuation of the scene with detailed dialogue and descriptions:\n\n---\n\n(In the c(...TRUNCATED)
"Here’s the continued and detailed scene:\n\n---\n\n(In the clubroom...)\n\nMonika: “I hope Nats(...TRUNCATED)
"Here’s the continued and detailed scene:\n\n---\n\n(In the clubroom...)\n\nMonika: “I hope Nats(...TRUNCATED)
"The scene shifts to a tense and chaotic but ultimately hopeful atmosphere as the paramedics arrive (...TRUNCATED)
"The paramedics quickly assess the situation, setting up a birthing kit and making sure they have ev(...TRUNCATED)
What is the science historical biology?
"1) Does the generated text provide a definition of historical biology? (importance: 100/100)\n2) Do(...TRUNCATED)
"It seems there might be a slight confusion in the term \"science historical biology.\" The correct (...TRUNCATED)
"It seems there might be a slight confusion in the term \"science historical biology.\" The correct (...TRUNCATED)
"It seems there might be a slight confusion in the term \"science historical biology.\" The correct (...TRUNCATED)
"It seems there might be a slight confusion in the term \"science historical biology.\" The correct (...TRUNCATED)
"It seems there might be a misunderstanding in the term \"science historical biology.\" Let's break (...TRUNCATED)
"It seems there might be a bit of a misinterpretation in the term \"science historical biology.\" Le(...TRUNCATED)
"It seems there might be a slight confusion in the term \"science historical biology.\" The correct (...TRUNCATED)
"It seems there might be a slight confusion in the term \"science historical biology.\" The correct (...TRUNCATED)
"It seems there might be a slight confusion in your terminology. \"Historical biology\" is not a com(...TRUNCATED)
"It seems there might be a bit of a mix-up in the terminology. There isn't a specific field called \(...TRUNCATED)
Give the 12 bit binary value of the denary value 250
"1) Is the generated text a 12-bit binary value? (importance: 100/100)\n2) Is the generated 12-bit b(...TRUNCATED)
"To convert the decimal value 250 to a 12-bit binary value, follow these steps:\n\n1. **Convert 250 (...TRUNCATED)
"To convert the denary value 250 to a 12-bit binary value, follow these steps:\n\n1. **Convert 250 t(...TRUNCATED)
"To convert the decimal value 250 to a 12-bit binary value, follow these steps:\n\n1. **Convert 250 (...TRUNCATED)
"To convert the decimal value 250 to a 12-bit binary value, follow these steps:\n\n1. **Convert 250 (...TRUNCATED)
"To convert the decimal value 250 to a 12-bit binary value, follow these steps:\n\n1. **Convert 250 (...TRUNCATED)
"To convert the denary value 250 to a 12-bit binary value, follow these steps:\n\n1. **Convert 250 t(...TRUNCATED)
"To convert the denary value 250 to a 12-bit binary value, follow these steps:\n\n1. **Convert 250 t(...TRUNCATED)
"To convert the decimal value 250 to a 12-bit binary value, follow these steps:\n\n1. **Convert 250 (...TRUNCATED)
"To convert the decimal value 250 to a 12-bit binary value, we first need to determine its binary re(...TRUNCATED)
"To convert the decimal value 250 to a 12-bit binary value, we need to first determine the binary re(...TRUNCATED)
"(In the clubroom...)\n\nMonika: \"Wait a minute...where's Yuri?\"\n\nSayori: \"I have no idea. Coul(...TRUNCATED)
"1) Does the generated text address the absence of Yuri? (importance: 100/100)\n2) Does the generate(...TRUNCATED)
"(In the clubroom...)\n\nMonika: \"Wait a minute...where's Yuri?\"\n\nSayori: \"I have no idea. Coul(...TRUNCATED)
"(In the clubroom...)\n\nMonika: \"Wait a minute...where's Yuri?\"\n\nSayori: \"I have no idea. Coul(...TRUNCATED)
"(In the clubroom...)\n\nMonika: \"Wait a minute...where's Yuri?\"\n\nSayori: \"I have no idea. Coul(...TRUNCATED)
"(In the clubroom...)\n\nMonika: \"Wait a minute...where's Yuri?\"\n\nSayori: \"I have no idea. Coul(...TRUNCATED)
"(In the clubroom...)\n\nMonika: \"Wait a minute... where's Yuri?\"\n\nSayori: \"I have no idea. Cou(...TRUNCATED)
"(In the clubroom...)\n\nMonika: \"Wait a minute... where's Yuri?\"\n\nSayori: \"I have no idea. Cou(...TRUNCATED)
"(In the clubroom...)\n\nMonika: \"Wait a minute...where's Yuri?\"\n\nSayori: \"I have no idea. Coul(...TRUNCATED)
"(In the clubroom...)\n\nMonika: \"Wait a minute...where's Yuri?\"\n\nSayori: \"I have no idea. Coul(...TRUNCATED)
"Monika: \"Yeah, she was supposed to be here ages ago. Maybe something came up?\" She pulls out her (...TRUNCATED)
"Monika: \"That's sweet, Natsuki. I remember how excited you were when you found out. It does go by (...TRUNCATED)
End of preview. Expand in Data Studio
README.md exists but content is empty.
Downloads last month
6