Spaces:
Running
Running
Changes for image and explanation
Browse files
app.py
CHANGED
@@ -148,12 +148,24 @@ def ui_main():
|
|
148 |
gr.Markdown(
|
149 |
"""
|
150 |
<div style="text-align: center;">
|
151 |
-
<img src="
|
152 |
<h1>SynthGenAI Dataset Generator</h1>
|
153 |
</div>
|
154 |
"""
|
155 |
)
|
156 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
157 |
with gr.Row():
|
158 |
llm_model = gr.Textbox(
|
159 |
label="LLM Model", placeholder="model_provider/model_name"
|
|
|
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():
|
170 |
llm_model = gr.Textbox(
|
171 |
label="LLM Model", placeholder="model_provider/model_name"
|