Spaces:
Sleeping
Sleeping
| import streamlit as st | |
| from streamlit_lottie import st_lottie | |
| import requests | |
| # Function to load Lottie animations | |
| def load_lottieurl(url: str): | |
| r = requests.get(url) | |
| if r.status_code != 200: | |
| return None | |
| return r.json() | |
| # Load a hero animation | |
| hero_animation = load_lottieurl("https://assets9.lottiefiles.com/packages/lf20_touohxv0.json") | |
| # App title and hero animation | |
| st.title("Zero to Hero in Machine Learning π") | |
| st_lottie(hero_animation, height=300, key="hero") | |
| # Author details | |
| st.header("About the Author π") | |
| st.write(""" | |
| Hi, I'm [Your Name], a Machine Learning enthusiast and Data Scientist. | |
| **Skills:** | |
| - Python, Pandas, Scikit-Learn, TensorFlow | |
| - Streamlit, Generative AI | |
| - Data Visualization | |
| """) | |