Mpavan45 commited on
Commit
fab6fa6
·
verified ·
1 Parent(s): 5bf15d7

Update pages/4_Model Creation and Evaluation.py

Browse files
pages/4_Model Creation and Evaluation.py CHANGED
@@ -19,9 +19,9 @@ st.markdown(
19
  <style>
20
  .stApp {{
21
  background-image: url("{background_image_url}");
22
- background-size: auto; /* Ensures the image retains its original size */
23
- background-repeat: repeat; /* Makes the image repeat to cover the entire background */
24
- background-position: top left; /* Starts repeating from the top-left corner */
25
  background-attachment: fixed; /* Keeps the background fixed as you scroll */
26
  }}
27
 
@@ -47,7 +47,6 @@ st.markdown(
47
  .stMarkdown {{
48
  color: white; /* White text to ensure visibility */
49
  font-size: 100px; /* Adjust font size for readability */
50
- # text-align: center; /* Center align text */
51
  }}
52
  </style>
53
  """,
@@ -55,6 +54,7 @@ st.markdown(
55
  )
56
 
57
 
 
58
  # Title Section
59
  st.title("Model Training and Selection with Optuna")
60
 
 
19
  <style>
20
  .stApp {{
21
  background-image: url("{background_image_url}");
22
+ background-size: 100% auto; /* Ensure the image width is 100% of the screen, and the height scales proportionally */
23
+ background-repeat: repeat-y; /* Repeat only vertically */
24
+ background-position: top center; /* Start repeating from the top center */
25
  background-attachment: fixed; /* Keeps the background fixed as you scroll */
26
  }}
27
 
 
47
  .stMarkdown {{
48
  color: white; /* White text to ensure visibility */
49
  font-size: 100px; /* Adjust font size for readability */
 
50
  }}
51
  </style>
52
  """,
 
54
  )
55
 
56
 
57
+
58
  # Title Section
59
  st.title("Model Training and Selection with Optuna")
60