Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -17,9 +17,22 @@ import pandas as pd # Added pandas import
|
|
17 |
def setup_cyberpunk_style():
|
18 |
st.markdown("""
|
19 |
<style>
|
20 |
-
|
21 |
-
|
22 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
23 |
|
24 |
# Prepare Dataset Function with Padding Token Fix
|
25 |
def prepare_dataset(data, tokenizer, block_size=128):
|
|
|
17 |
def setup_cyberpunk_style():
|
18 |
st.markdown("""
|
19 |
<style>
|
20 |
+
body, button, input, select, textarea {
|
21 |
+
font-family: 'Orbitron', sans-serif !important;
|
22 |
+
color: #00ff9d !important;
|
23 |
+
}
|
24 |
+
.stApp {
|
25 |
+
background: radial-gradient(circle, rgba(0, 0, 0, 0.95) 20%, rgba(0, 50, 80, 0.95) 90%);
|
26 |
+
color: #00ff9d;
|
27 |
+
font-family: 'Orbitron', sans-serif;
|
28 |
+
font-size: 16px;
|
29 |
+
line-height: 1.6;
|
30 |
+
padding: 20px;
|
31 |
+
box-sizing: border-box;
|
32 |
+
}
|
33 |
+
|
34 |
+
.main-title {
|
35 |
+
|
36 |
|
37 |
# Prepare Dataset Function with Padding Token Fix
|
38 |
def prepare_dataset(data, tokenizer, block_size=128):
|