Spaces:
Running
Running
File size: 2,621 Bytes
60e9c71 f25e872 60e9c71 f25e872 60e9c71 f25e872 60e9c71 f25e872 60e9c71 f25e872 60e9c71 f25e872 60e9c71 f25e872 60e9c71 f25e872 60e9c71 f25e872 60e9c71 f25e872 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 |
import streamlit as st
from PIL import Image
# Background color
st.markdown("""
<style>
body {
background-color: #f0f2f6;
}
.main {
background-color: #ffffff;
padding: 20px;
border-radius: 10px;
box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}
h1 {
color: #2C3E50;
}
h2 {
color: #1ABC9C;
}
h3 {
color: #16A085;
}
</style>
""", unsafe_allow_html=True)
# Title with a logo (add an image if available)
st.image('path_to_your_image/logo.png', width=100)
st.title("Taisei Ozaki's Personal Web Page")
# Profile Overview with columns for better layout
st.header("Profile Overview")
col1, col2 = st.columns([1, 2])
with col1:
image = Image.open('path_to_your_image/profile_pic.jpg')
st.image(image, caption="Taisei Ozaki", width=150)
with col2:
st.write("""
Taisei Ozaki is a graduate student (M2) at Osaka Metropolitan University, specializing in mechanical engineering and natural language processing (NLP).
His research focuses on large language models (LLMs) and AI education.
""")
# Education Section with icons
st.subheader("🎓 Education")
st.write("""
- **2023 - Present:** Master's in Engineering, Osaka Metropolitan University
- **2019 - 2023:** Bachelor's in Mechanical Engineering, Osaka Prefecture University
""")
# Experience Section with a modern layout
st.subheader("💼 Professional Experience")
st.write("""
- **2024 (Upcoming):** Research Intern, NTT
- **2023:** Algorithm Engineer Intern, PKSHA Technology
- **2023:** Research Intern, NEC Corporation
- **2024:** Team Leader, Geniac Project, Tokyo University Matsuo Lab
""")
# Achievements Section
st.subheader("🏆 Awards and Achievements")
st.write("""
- **2023:** Outstanding Award, Artificial Intelligence Society National Conference
- **2024:** Leader, Japanese Large Language Model Development Project (Geniac)
""")
# Research Interests Section in a grid
st.subheader("🔬 Research Interests")
col1, col2, col3 = st.columns(3)
with col1:
st.write("• Natural Language Processing")
with col2:
st.write("• AI and Education")
with col3:
st.write("• Esports and AI integration")
# Contact Information
st.subheader("📍 Contact Information")
st.write("Location: Osaka, Japan")
# Social Links
st.markdown("[LinkedIn Profile](https://www.linkedin.com/in/taisei-ozaki-del/)")
# Footer styling
st.markdown("""
<style>
footer {
visibility: hidden;
}
.reportview-container .main footer {
visibility: hidden;
}
</style>
""", unsafe_allow_html=True)
|