Spaces:
Sleeping
Sleeping
File size: 5,387 Bytes
c01a3fa 80a1520 ddf19db 48363c3 ddf19db 083e967 80a1520 083e967 48363c3 80a1520 083e967 ddf19db 80a1520 ddf19db 083e967 7f14c2d 083e967 80a1520 083e967 349ad50 083e967 80a1520 48363c3 80a1520 083e967 48363c3 083e967 48363c3 083e967 48363c3 083e967 48363c3 083e967 48363c3 083e967 7f14c2d 80a1520 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 |
import streamlit as st
import pandas as pd
import numpy as np
import random
import os
from datetime import datetime
import ast
# Custom CSS for enhanced styling
def local_css():
st.markdown("""
<style>
/* Global Styling */
body {
background-color: #f0f2f6;
color: #333;
}
/* Game Container */
.game-container {
background-color: white;
border-radius: 15px;
padding: 20px;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
margin-bottom: 20px;
}
/* Sentences Styling */
.sentence-container {
background-color: #f8f9fa;
border-left: 4px solid #3498db;
padding: 10px;
margin-bottom: 10px;
transition: all 0.3s ease;
}
.sentence-container:hover {
background-color: #e9ecef;
transform: translateX(5px);
}
/* Buttons */
.stButton>button {
background-color: #3498db;
color: white;
border-radius: 20px;
border: none;
padding: 10px 20px;
transition: all 0.3s ease;
}
.stButton>button:hover {
background-color: #2980b9;
transform: scale(1.05);
}
/* Radio Buttons */
.stRadio>div {
display: flex;
flex-wrap: wrap;
gap: 10px;
}
.stRadio>div>label {
background-color: #ecf0f1;
padding: 10px;
border-radius: 10px;
transition: all 0.3s ease;
}
.stRadio>div>label:hover {
background-color: #3498db;
color: white;
}
/* Sidebar */
.css-1aumxhk {
background-color: #2c3e50;
color: white;
}
/* Reason Validation */
.reason-valid {
color: #2ecc71;
font-weight: bold;
}
.reason-invalid {
color: #e74c3c;
font-weight: bold;
}
</style>
""", unsafe_allow_html=True)
class RoFTGame:
# [Previous implementation remains the same]
# ... [Copy the entire RoFTGame class from the previous implementation] ...
def main():
# Apply custom CSS
local_css()
# Fancy title with animation
st.markdown("""
<h1 style='text-align: center; color: #2c3e50;
text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
animation: fadeIn 2s;'>
🕵️ Real or Fake Text Detective 🕵️♀️
</h1>
""", unsafe_allow_html=True)
# Game introduction
st.markdown("""
<div class='game-container'>
<p style='text-align: center; font-style: italic;'>
Sharpen your AI detection skills! Read carefully and identify where human writing transforms into machine-generated text.
</p>
</div>
""", unsafe_allow_html=True)
# Initialize game session state
if 'game' not in st.session_state:
st.session_state.game = RoFTGame('roft.csv')
st.session_state.game.load_random_sample()
st.session_state.total_points = 0
st.session_state.rounds_played = 0
# Game container
st.markdown("<div class='game-container'>", unsafe_allow_html=True)
# Game information in sidebar with icons
st.sidebar.markdown("## 🎮 Game Stats")
st.sidebar.markdown(f"### 🏆 Total Points: {st.session_state.total_points}")
st.sidebar.markdown(f"### 🎲 Rounds Played: {st.session_state.rounds_played}")
# Animated difficulty indicator
difficulty_map = {
'gpt2': '🟢 Easy',
'gpt2-xl': '🟠 Medium',
'ctrl': '🔴 Hard'
}
current_model = st.session_state.game.current_sample['model']
difficulty = difficulty_map.get(current_model, '⚪ Unknown')
st.sidebar.markdown(f"### 🎯 Difficulty: {difficulty}")
# Display sentences with enhanced styling
st.subheader("🔍 Examine the Text Carefully")
for i, sentence in enumerate(st.session_state.game.current_sentences):
st.markdown(f"""
<div class='sentence-container'>
<strong>{i+1}.</strong> {sentence}
</div>
""", unsafe_allow_html=True)
# Boundary selection with visual improvements
st.markdown("### 🚨 Detect AI Transition Point")
guess = st.radio(
"Where do you think the AI-generated text begins?",
options=[str(i+1) for i in range(len(st.session_state.game.current_sentences))]
)
# Reason input with predefined options and visual enhancements
st.markdown("### 🧐 Explain Your Reasoning")
reason_options = st.session_state.game.predefined_reasons
selected_predefined_reasons = st.multiselect(
"Select indicators of AI generation",
options=reason_options
)
# Custom reason input
custom_reason = st.text_area("Additional detective notes (optional)")
# Combine predefined and custom reasons
full_reason = " ".join(selected_predefined_reasons)
if custom_reason:
full_reason += f" {custom_reason}"
# Submit button with game metaphor
if st.button("🕵️ Submit Detective Report"):
if not full_reason.strip():
st.warning("🚨 Every good detective needs evidence! Please provide a reason.")
else:
# [Rest of the submission logic remains the same as in previous implementation]
# ... [Copy the entire submission block from previous implementation] ...
st.markdown("</div>", unsafe_allow_html=True)
if __name__ == "__main__":
main() |