DeL-TaiseiOzaki commited on
Commit
f25e872
·
verified ·
1 Parent(s): 60e9c71

Update app.py

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