Shekswess commited on
Commit
73b1b12
Β·
1 Parent(s): d73ef8b

Changes for image and explanation to be centered

Browse files
Files changed (1) hide show
  1. app.py +12 -8
app.py CHANGED
@@ -148,22 +148,26 @@ def ui_main():
148
  gr.Markdown(
149
  """
150
  <div style="text-align: center;">
151
- <img src="./assets/logo_header.png" alt="Header Image" style="display: block; margin-left: auto; margin-right: auto; width: 50%;"/>
152
  <h1>SynthGenAI Dataset Generator</h1>
153
  </div>
154
- """
 
155
  )
156
 
157
  gr.Markdown(
158
  """
159
- ## Overview 🧐
160
- SynthGenAI is designed to be modular and can be easily extended to include different API providers for LLMs and new features.
 
161
 
162
- ## Why SynthGenAI? πŸ€”
163
- Interest in synthetic data generation has surged recently, driven by the growing recognition of data as a critical asset in AI development. Synthetic data generation addresses challenges by allowing us to create diverse and useful datasets using current pre-trained Large Language Models (LLMs).
164
 
165
- [GitHub Repository](https://github.com/Shekswess/synthgenai/tree/main) | [Documentation](https://shekswess.github.io/synthgenai/)
166
- """
 
 
167
  )
168
 
169
  with gr.Row():
 
148
  gr.Markdown(
149
  """
150
  <div style="text-align: center;">
151
+ ![Header Image](./assets/logo_header.png)
152
  <h1>SynthGenAI Dataset Generator</h1>
153
  </div>
154
+ """,
155
+ elem_id="header"
156
  )
157
 
158
  gr.Markdown(
159
  """
160
+ <div style="text-align: center;">
161
+ ## Overview 🧐
162
+ SynthGenAI is designed to be modular and can be easily extended to include different API providers for LLMs and new features.
163
 
164
+ ## Why SynthGenAI? πŸ€”
165
+ Interest in synthetic data generation has surged recently, driven by the growing recognition of data as a critical asset in AI development. Synthetic data generation addresses challenges by allowing us to create diverse and useful datasets using current pre-trained Large Language Models (LLMs).
166
 
167
+ [GitHub Repository](https://github.com/Shekswess/synthgenai/tree/main) | [Documentation](https://shekswess.github.io/synthgenai/)
168
+ </div>
169
+ """,
170
+ elem_id="overview"
171
  )
172
 
173
  with gr.Row():