Spaces:
Runtime error
Runtime error
Update app.py
Browse filesimage placeholder + instructions
app.py
CHANGED
@@ -17,13 +17,13 @@ model = AutoModelForCausalLM.from_pretrained(model_id, device_map="cuda", trust_
|
|
17 |
processor = AutoProcessor.from_pretrained(model_id, trust_remote_code=True)
|
18 |
model.to("cuda:0")
|
19 |
|
20 |
-
# Enhanced Placeholder HTML with instructions
|
21 |
PLACEHOLDER = """
|
22 |
-
<div style="padding:
|
23 |
-
<div style="background-color: rgba(0, 0, 0, 0.6); padding: 20px; border-radius: 10px;">
|
24 |
-
<
|
25 |
-
<
|
26 |
-
<
|
|
|
27 |
<li>πΈ <strong>Upload</strong> a photo of your exercise.</li>
|
28 |
<li>β‘ <strong>Get instant feedback</strong> to perfect your form.</li>
|
29 |
<li>π₯ <strong>Improve your workouts</strong> with expert tips!</li>
|
@@ -33,6 +33,7 @@ PLACEHOLDER = """
|
|
33 |
"""
|
34 |
|
35 |
|
|
|
36 |
@spaces.GPU
|
37 |
def bot_streaming(message, history):
|
38 |
print(f'message is - {message}')
|
|
|
17 |
processor = AutoProcessor.from_pretrained(model_id, trust_remote_code=True)
|
18 |
model.to("cuda:0")
|
19 |
|
|
|
20 |
PLACEHOLDER = """
|
21 |
+
<div style="padding: 30px; text-align: center; display: flex; flex-direction: column; align-items: center; background-image: url('https://huggingface.co/spaces/simonraj/PersonalTrainer-Arnold/blob/main/fitness_coach_app_resized.jpg'); background-size: cover; background-position: center; width: 100%; height: 100vh; color: white;">
|
22 |
+
<div style="background-color: rgba(0, 0, 0, 0.6); padding: 20px; border-radius: 10px; width: 80%; max-width: 550px;">
|
23 |
+
<img src="https://huggingface.co/spaces/simonraj/PersonalTrainer-Arnold/blob/main/fitness_coach_app_resized.jpg" style="width: 80%; max-width: 550px; height: auto; opacity: 0.55;">
|
24 |
+
<h1 style="font-size: 28px; margin-bottom: 2px; opacity: 0.85;">Get Ripped with Arnold's AI Coach</h1>
|
25 |
+
<p style="font-size: 18px; margin-bottom: 2px; opacity: 0.85;">Welcome to the ultimate fitness companion! πͺ</p>
|
26 |
+
<ul style="text-align: left; font-size: 16px; list-style: none; padding: 0; opacity: 0.85;">
|
27 |
<li>πΈ <strong>Upload</strong> a photo of your exercise.</li>
|
28 |
<li>β‘ <strong>Get instant feedback</strong> to perfect your form.</li>
|
29 |
<li>π₯ <strong>Improve your workouts</strong> with expert tips!</li>
|
|
|
33 |
"""
|
34 |
|
35 |
|
36 |
+
|
37 |
@spaces.GPU
|
38 |
def bot_streaming(message, history):
|
39 |
print(f'message is - {message}')
|