import streamlit as st from streamlit_extras.switch_page_button import switch_page from utils.functional import generate_empty_space, set_page_config # Set page config set_page_config("Homepage", "πŸš€") # First Header st.markdown("# 😊 About Me") st.write( """ πŸ‘‹ Hello everyone! My name is Hafidh Soekma Ardiansyah and I'm a student at Surabaya State University, majoring in Management Information Vocational Programs. πŸŽ“ I am excited to share with you all about my final project for the semester. πŸ“š My project is about classifying anime characters from the popular Hunter X Hunter anime series using various machine learning algorithms. πŸ€– To start the project, I collected a dataset of images featuring the characters from the series. πŸ“· Then, I preprocessed the data to ensure that the algorithms could efficiently process it. πŸ’» After the data preparation, I used various algorithms such as Deep Learning, Prototypical Networks, and many more to classify the characters. 🧠 Through this project, I hope to showcase my skills in machine learning and contribute to the community of anime fans who are interested in image classification. πŸ™Œ Thank you for your attention, and please feel free to ask me any questions about the project! πŸ€— """ ) st.markdown("# πŸ•΅οΈ About the Project") st.markdown("### 🦸 HxH Character Anime Classification with Prototypical Networks") st.write( "Classify your favorite Hunter x Hunter characters with our cutting-edge Prototypical Networks! πŸ¦Έβ€β™‚οΈπŸ¦Έβ€β™€οΈ" ) go_to_page_0 = st.button( "Go to page 0", ) generate_empty_space(2) if go_to_page_0: switch_page("hxh character anime classification with prototypical networks") st.markdown("### πŸ”Ž HxH Character Anime Detection with Prototypical Networks") st.write( "Detect the presence of your beloved Hunter x Hunter characters using Prototypical Networks! πŸ”ŽπŸ•΅οΈβ€β™‚οΈπŸ•΅οΈβ€β™€οΈ" ) go_to_page_1 = st.button( "Go to page 1", ) generate_empty_space(2) if go_to_page_1: switch_page("hxh character anime detection with prototypical networks") st.markdown("### πŸ“Š Image Similarity with Prototypical Networks") st.write( "Discover how similar your Images are to one another with our Prototypical Networks! πŸ“ŠπŸ€”" ) go_to_page_2 = st.button( "Go to page 2", ) generate_empty_space(2) if go_to_page_2: switch_page("image similarity with prototypical networks") st.markdown("### 🌌 Image Embeddings with Prototypical Networks") st.write( "Unleash the power of image embeddings to represent Images in a whole new way with our Prototypical Networks! 🌌🀯" ) go_to_page_3 = st.button( "Go to page 3", ) generate_empty_space(2) if go_to_page_3: switch_page("image embeddings with prototypical networks") st.markdown("### πŸ€– HxH Character Anime Classification with Deep Learning") st.write( "Experience the next level of character classification with our Deep Learning models trained on Hunter x Hunter anime characters! πŸ€–πŸ“ˆ" ) go_to_page_4 = st.button( "Go to page 4", ) generate_empty_space(2) if go_to_page_4: switch_page("hxh character anime classification with deep learning") st.markdown("### πŸ“· HxH Character Anime Detection with Deep Learning") st.write( "Detect your favorite Hunter x Hunter characters with our Deep Learning models! πŸ“·πŸ•΅οΈβ€β™‚οΈπŸ•΅οΈβ€β™€οΈ" ) go_to_page_5 = st.button( "Go to page 5", ) generate_empty_space(2) if go_to_page_5: switch_page("hxh character anime detection with deep learning") st.markdown("### πŸ–ΌοΈ Image Similarity with Deep Learning") st.write( "Discover the similarities and differences between your Images with our Deep Learning models! πŸ–ΌοΈπŸ§" ) go_to_page_6 = st.button( "Go to page 6", ) generate_empty_space(2) if go_to_page_6: switch_page("image similarity with deep learning") st.markdown("### πŸ“ˆ Image Embeddings with Deep Learning") st.write( "Explore a new dimension of Images representations with our Deep Learning-based image embeddings! πŸ“ˆπŸ”" ) go_to_page_7 = st.button( "Go to page 7", ) generate_empty_space(2) if go_to_page_7: switch_page("image embeddings with deep learning") st.markdown("### 🎯 Zero-Shot Image Classification with CLIP") st.write( "Classify Images with zero training using CLIP, a state-of-the-art language-image model! 🎯🀯" ) go_to_page_8 = st.button( "Go to page 8", ) generate_empty_space(2) if go_to_page_8: switch_page("zero-shot image classification with clip") st.markdown("### 😊 More About Me") st.write( "Curious to learn more about the person behind these amazing projects? Check out my bio and get to know me better! πŸ˜ŠπŸ§‘β€πŸ’Ό" ) go_to_page_9 = st.button( "Go to page 9", ) generate_empty_space(2) if go_to_page_9: switch_page("more about me") st.markdown("### πŸ“š Glossary") st.write( "Not sure what some of the terms used in this project mean? Check out our glossary to learn more! πŸ“šπŸ€“" ) go_to_page_10 = st.button( "Go to page 10", ) generate_empty_space(2) if go_to_page_10: switch_page("glossary")