Spaces:
Sleeping
Sleeping
File size: 13,222 Bytes
ee311e5 9f9e3a4 ee311e5 74d9ef0 ee311e5 74d9ef0 ee311e5 74d9ef0 ee311e5 9bd4e99 ee311e5 | 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 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 | """
Workout Session Data Collection
Gradio app for collecting real-world labeled workout data.
Submissions are written to a private Google Sheet in real time.
"""
import gradio as gr
import gspread
import os
import json
from datetime import datetime
from google.oauth2.service_account import Credentials
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# GOOGLE SHEETS SETUP
# Credentials are loaded from the GOOGLE_CREDENTIALS env var
# (set as a HF Space Secret β paste the entire service account
# JSON as a single-line string)
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
SCOPES = [
"https://www.googleapis.com/auth/spreadsheets",
"https://www.googleapis.com/auth/drive",
]
SHEET_NAME = os.getenv("SHEET_NAME", "workout_sessions")
# Expected header row β must match the sheet's first row exactly
HEADERS = [
"timestamp",
"user_text",
"mood",
"exertion",
"soreness_region",
"soreness_severity",
"completion_status",
]
def get_sheet():
"""
Authenticate with Google Sheets using the service account
credentials stored in the GOOGLE_CREDENTIALS env var.
Returns the first worksheet of the target spreadsheet.
"""
creds_json = os.getenv("GOOGLE_CREDENTIALS")
if not creds_json:
raise EnvironmentError(
"GOOGLE_CREDENTIALS env var not set. "
"Add your service account JSON as a HF Space Secret."
)
creds_dict = json.loads(creds_json)
creds = Credentials.from_service_account_info(creds_dict, scopes=SCOPES)
client = gspread.authorize(creds)
sheet = client.open(SHEET_NAME).sheet1
# Write headers if the sheet is empty
if sheet.row_count == 0 or sheet.row_values(1) != HEADERS:
sheet.insert_row(HEADERS, index=1)
return sheet
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# LABEL OPTIONS
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
MOOD_OPTIONS = [
"accomplished", "anxious", "distracted", "energized",
"fatigued", "frustrated", "neutral", "positive",
]
EXERTION_OPTIONS = ["low", "moderate", "high"]
SORENESS_REGION_OPTIONS = [
"none", "back", "biceps", "chest",
"legs", "shoulder", "triceps",
]
SORENESS_SEVERITY_OPTIONS = ["none", "mild", "moderate", "severe"]
COMPLETION_OPTIONS = ["full", "partial"]
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# NUMERICAL ENCODING MAPS
# Must stay in sync with your training notebook label maps
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
MOOD_MAP = {
"accomplished": 0,
"anxious": 1,
"distracted": 2,
"energized": 3,
"fatigued": 4,
"frustrated": 5,
"neutral": 6,
"positive": 7,
}
EXERTION_MAP = {
"low": 0,
"moderate": 1,
"high": 2,
}
SORENESS_REGION_MAP = {
"none": 0,
"back": 1,
"biceps": 2,
"chest": 3,
"legs": 4,
"shoulder": 5,
"triceps": 6,
}
SORENESS_SEVERITY_MAP = {
"none": 0,
"mild": 1,
"moderate": 2,
"severe": 3,
}
COMPLETION_MAP = {
"full": 1,
"partial": 0,
}
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# SUBMISSION HANDLER
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def submit_entry(
user_text: str,
mood: str,
exertion: str,
soreness_region: str,
soreness_severity: str,
completion_status: str,
) -> str:
"""
Validates the form and appends one row to the Google Sheet.
Returns a status string displayed to the user.
"""
# ββ Validation βββββββββββββββββββββββββββββββββββββββββββ
if not user_text or len(user_text.strip()) < 10:
return "β οΈ Please describe your session in at least 10 characters."
missing = []
if not mood: missing.append("Mood")
if not exertion: missing.append("Exertion")
if not soreness_region: missing.append("Soreness Region")
if not soreness_severity: missing.append("Soreness Severity")
if not completion_status: missing.append("Completion")
if missing:
return f"β οΈ Please select: {', '.join(missing)}"
# Severity/region consistency check
if soreness_region == "none" and soreness_severity != "none":
return "β οΈ Soreness severity must be 'none' when region is 'none'."
if soreness_region != "none" and soreness_severity == "none":
return "β οΈ Please select a severity level for your soreness region."
# ββ Encode labels to integers βββββββββββββββββββββββββββββ
row = [
datetime.utcnow().strftime("%Y-%m-%d %H:%M:%S"),
user_text.strip(),
MOOD_MAP[mood],
EXERTION_MAP[exertion],
SORENESS_REGION_MAP[soreness_region],
SORENESS_SEVERITY_MAP[soreness_severity],
COMPLETION_MAP[completion_status],
]
# ββ Write to Google Sheets βββββββββββββββββββββββββββββββ
try:
sheet = get_sheet()
sheet.append_row(row, value_input_option="USER_ENTERED")
except EnvironmentError as e:
return f"β Configuration error: {str(e)}"
except Exception as e:
return f"β Failed to save: {str(e)}"
return (
"β
Submitted! Thank you β your session has been logged.\n\n"
"Feel free to submit another entry."
)
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# GRADIO UI
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
with gr.Blocks(
title="Workout Session Logger",
theme=gr.themes.Soft(
primary_hue="orange",
neutral_hue="slate",
),
css="""
.submit-btn { background: #FF4500 !important; border: none !important; }
.submit-btn:hover { background: #CC3700 !important; }
footer { display: none !important; }
""",
) as demo:
# ββ Header ββββββββββββββββββββββββββββββββββββββββββββββββ
gr.Markdown(
"""
# ποΈ Workout Session Logger
### Help train a smarter fitness AI
Describe your session in your own words, then label it using the
dropdowns below. Your data helps build a model that understands
how athletes really feel after training.
**All submissions are anonymous. Be as honest as possible β
bad sessions are just as valuable as great ones.**
"""
)
gr.Markdown("---")
# ββ Free text input βββββββββββββββββββββββββββββββββββββββ
gr.Markdown("### 1. Describe your session")
gr.Markdown(
"_Write naturally β exactly how you'd tell a training partner. "
"Include how you felt, what you trained, any soreness or energy levels._"
)
user_text = gr.Textbox(
label="Session description",
placeholder=(
"e.g. Hit a new PR on deadlifts today, feeling absolutely "
"wrecked but stoked. Lower back is pretty sore and I only "
"got through 4 of 5 sets before calling it..."
),
lines=5,
max_lines=10,
)
gr.Markdown("---")
# ββ Labels ββββββββββββββββββββββββββββββββββββββββββββββββ
gr.Markdown("### 2. Label your session")
gr.Markdown(
"_Select the option that best matches how you felt **after** the session._"
)
with gr.Row():
mood = gr.Dropdown(
choices=MOOD_OPTIONS,
label="Mood",
info="How did you feel after finishing?",
)
exertion = gr.Dropdown(
choices=EXERTION_OPTIONS,
label="Exertion level",
info="How hard did you push overall?",
)
with gr.Row():
soreness_region = gr.Dropdown(
choices=SORENESS_REGION_OPTIONS,
label="Soreness region",
info="Which muscle group is most sore? Select 'none' if no soreness.",
)
soreness_severity = gr.Dropdown(
choices=SORENESS_SEVERITY_OPTIONS,
label="Soreness severity",
info="How intense is the soreness? Select 'none' if no soreness.",
)
completion_status = gr.Dropdown(
choices=COMPLETION_OPTIONS,
label="Completion",
info="Did you finish the full planned session?",
)
gr.Markdown("---")
# ββ Submit ββββββββββββββββββββββββββββββββββββββββββββββββ
submit_btn = gr.Button(
"Submit Session",
variant="primary",
elem_classes=["submit-btn"],
size="lg",
)
status_output = gr.Textbox(
label="Status",
interactive=False,
show_label=False,
)
submit_btn.click(
fn=submit_entry,
inputs=[
user_text,
mood,
exertion,
soreness_region,
soreness_severity,
completion_status,
],
outputs=status_output,
)
# ββ Label reference βββββββββββββββββββββββββββββββββββββββ
with gr.Accordion("π Label reference guide", open=False):
gr.Markdown(
"""
### Mood
| Label | When to use |
|---|---|
| **accomplished** | Hit a goal, PR, or felt proud of the effort |
| **energized** | Left the gym feeling charged and strong |
| **positive** | Good session, happy with the work done |
| **neutral** | Average session, nothing special either way |
| **fatigued** | Drained, low energy, struggled through it |
| **frustrated** | Bad session, missed lifts, things went wrong |
| **anxious** | Felt uneasy, worried about injury or performance |
| **distracted** | Couldn't focus, mind elsewhere, scattered session |
### Exertion
| Label | When to use |
|---|---|
| **low** | Light session, easy pace, well within limits |
| **moderate** | Solid effort, challenging but manageable |
| **high** | Pushed to near-limit, very demanding session |
### Soreness Region
Select the **primary** muscle group that is sore or was most targeted.
Choose **none** if you have no notable soreness.
### Soreness Severity
| Label | When to use |
|---|---|
| **none** | No soreness at all |
| **mild** | Slightly tight or tender, barely noticeable |
| **moderate** | Noticeably sore, aware of it during movement |
| **severe** | Very sore, impacts range of motion or daily activity |
### Completion
| Label | When to use |
|---|---|
| **full** | Completed all planned sets, exercises, and volume |
| **partial** | Skipped exercises, cut sets short, or left early |
"""
)
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# LAUNCH
# βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
if __name__ == "__main__":
demo.launch()
|