Update app.py
Browse filesChange Project title
app.py
CHANGED
|
@@ -33,16 +33,16 @@ def main():
|
|
| 33 |
# Header with futuristic design
|
| 34 |
st.markdown("""
|
| 35 |
<div class="header">
|
| 36 |
-
<h1>
|
| 37 |
-
<p>
|
| 38 |
</div>
|
| 39 |
""", unsafe_allow_html=True)
|
| 40 |
|
| 41 |
# Sidebar for customization options
|
| 42 |
st.sidebar.title('Customization')
|
| 43 |
model = st.sidebar.selectbox(
|
| 44 |
-
'
|
| 45 |
-
[
|
| 46 |
)
|
| 47 |
|
| 48 |
# Initialize LLM
|
|
@@ -52,7 +52,7 @@ def main():
|
|
| 52 |
|
| 53 |
# User inputs
|
| 54 |
user_question = st.text_area("Describe your ML problem:", key="user_question")
|
| 55 |
-
uploaded_file = st.file_uploader("Upload a sample .csv of your data
|
| 56 |
try:
|
| 57 |
file_name = uploaded_file.name
|
| 58 |
except:
|
|
|
|
| 33 |
# Header with futuristic design
|
| 34 |
st.markdown("""
|
| 35 |
<div class="header">
|
| 36 |
+
<h1>AutoTabML</h1>
|
| 37 |
+
<p>Automated Machine Learning Code Generation for Tabluar Data</p>
|
| 38 |
</div>
|
| 39 |
""", unsafe_allow_html=True)
|
| 40 |
|
| 41 |
# Sidebar for customization options
|
| 42 |
st.sidebar.title('Customization')
|
| 43 |
model = st.sidebar.selectbox(
|
| 44 |
+
'Model',
|
| 45 |
+
["llama3-70b-8192"]
|
| 46 |
)
|
| 47 |
|
| 48 |
# Initialize LLM
|
|
|
|
| 52 |
|
| 53 |
# User inputs
|
| 54 |
user_question = st.text_area("Describe your ML problem:", key="user_question")
|
| 55 |
+
uploaded_file = st.file_uploader("Upload a sample .csv of your data", key="uploaded_file")
|
| 56 |
try:
|
| 57 |
file_name = uploaded_file.name
|
| 58 |
except:
|