Mattral commited on
Commit
81beffe
Β·
verified Β·
1 Parent(s): e226e95

Delete pages/4_πŸ”Ž_About.py

Browse files
Files changed (1) hide show
  1. pages/4_πŸ”Ž_About.py +0 -69
pages/4_πŸ”Ž_About.py DELETED
@@ -1,69 +0,0 @@
1
-
2
- import streamlit as st
3
- import requests
4
- import PIL.Image as Image
5
-
6
-
7
- def new_line():
8
- st.markdown("<br>", unsafe_allow_html=True)
9
-
10
-
11
- # Define a function to load the Lottie animation
12
- def load_lottieurl(url: str):
13
- r = requests.get(url)
14
- if r.status_code != 200:
15
- return None
16
- return r.json()
17
-
18
- # Config
19
- page_icon = Image.open("./assets/icon.png")
20
- st.set_page_config(layout="centered", page_title="Click ML", page_icon=page_icon)
21
-
22
-
23
- # Create the About page
24
- def main():
25
- # Title Page
26
- st.markdown("<h1 align='center'> πŸ”ŽAbout", unsafe_allow_html=True)
27
- new_line()
28
-
29
- # What is ClickML?
30
- st.markdown("Welcome to Click Analytics, an intuitive and powerful machine learning application designed to simplify the process of building and evaluating machine learning models. Whether you're a beginner or an experienced data scientist, ClickML provides a user-friendly interface to streamline your machine learning workflows.", unsafe_allow_html=True)
31
- st.markdown("It is no-code easy-to-use platfrom which allows you to build machine learning models without writing a single line of code. \n ")
32
-
33
-
34
-
35
-
36
- # what this app does with the main, quickml, and study_time pages
37
- st.markdown("This app is divided into three main tabs: **πŸ‘‰ ClickML**, **πŸš€ QuickML**, and **πŸ“š StudyML**.", unsafe_allow_html=True)
38
- st.write("\n")
39
-
40
- # ClickML
41
- st.markdown("### πŸ‘‰ ClickML")
42
- st.markdown("- **ClickML:** This section is the main page of the **ClickML** web app. It provides the customizability to build Machine Learning models by selecting and applying the Data Preparation techniques that fits your data. Also, you can try differnet Machine Learning models and tune the hyperparameters to get the best model.", unsafe_allow_html=True)
43
- st.write("\n")
44
-
45
- # QuickML
46
- st.markdown("### πŸš€ QuickML")
47
- st.markdown("- **QuickML:** QuickML is a tab that allows you to build a model quickly with just a few clicks. This tab is designed for people who are new to Machine Learning and want to build a model quickly without having to go through the entire process of Exploratory Data Analysis, Data Cleaning, Feature Engineering, etc. It is just a quick way to build a model for testing purposes.", unsafe_allow_html=True)
48
- st.write("\n")
49
-
50
- # StudyML
51
- st.markdown("### πŸ“š StudyML")
52
- st.markdown("- **Study Time:** The StudyML tab is designed to help you to understand the key concepts of building machine learning models. This tab has 7 sections, each section talk about a specific concept in building machine learning models. With each section you will have the uplility to apply the concepts of this sections on multiple datasets. The code the Explaination and everything you need to understand is in this tab.", unsafe_allow_html=True)
53
- new_line()
54
-
55
- # Why ClickML?
56
- st.header("✨ Why Choose ClickML?")
57
- st.markdown("""
58
- - **User-Friendly Interface**: ClickML offers an intuitive and easy-to-use interface, making machine learning accessible to users of all skill levels.
59
- - **Efficiency and Speed**: With ClickML, you can quickly build, train, and evaluate machine learning models, reducing the time and effort required.
60
- - **Comprehensive Learning Resources**: The StudyML tab provides detailed explanations, code examples, and visualizations to enhance your understanding of machine learning concepts.
61
- - **Flexible and Customizable**: ClickML supports a wide range of algorithms and allows you to fine-tune model parameters to meet your specific requirements.
62
-
63
- """, unsafe_allow_html=True)
64
- new_line()
65
-
66
-
67
-
68
- if __name__ == "__main__":
69
- main()