File size: 5,823 Bytes
49bceed |
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 |
import streamlit as st
from utils.functional import generate_empty_space, set_page_config
# Set page config
set_page_config("Glossary", "๐")
generate_empty_space(1)
st.write(
"- Artificial Intelligence ๐ค: The ability of machines to perform tasks that would normally require human intelligence, such as visual perception, speech recognition, decision-making, and language translation."
)
st.write(
"- Machine Learning ๐ง : A subfield of AI that enables machines to learn from data without being explicitly programmed. It involves the use of algorithms that can learn and improve from experience."
)
st.write(
"- Deep Learning ๐คฏ: A type of machine learning that uses neural networks to process and analyze large amounts of data. It involves multiple layers of artificial neurons that can learn complex patterns and relationships."
)
st.write(
"- Computer Vision ๐: A field of AI that focuses on enabling machines to interpret and understand visual data from the world, such as images and videos."
)
st.write(
"- Model Deep Learning ๐งฎ: A mathematical representation of a deep learning algorithm that can be used to make predictions or classifications based on input data."
)
st.write(
"- resnet50 ๐ค: A popular deep learning model used for image classification, object detection, and other computer vision tasks. It has 50 layers and uses residual connections to improve training."
)
st.write(
"- vgg16 ๐ค: Another popular deep learning model for image classification. It has 16 layers and uses small convolutional filters."
)
st.write(
"- inception_v4 ๐ค: A deep learning model that uses inception modules to capture both local and global features in images. It is known for its high accuracy in image classification tasks."
)
st.write(
"- efficientnet_b4 ๐ค: A deep learning model that is designed to be more efficient and accurate than previous models. It uses a combination of scaling, squeezing, and excitation techniques to improve performance."
)
st.write(
"- mobilenetv3_large_100 ๐ค: A deep learning model that is designed to be lightweight and fast, making it ideal for mobile and embedded devices. It has high accuracy in image classification tasks."
)
st.write(
"- densenet121 ๐ค: A deep learning model that uses dense connections between layers to improve training and reduce the number of parameters needed."
)
st.write(
"- vit_base_patch16_224_dino ๐ค: A deep learning model that uses a transformer architecture for image classification tasks. It has achieved state-of-the-art performance in some benchmarks."
)
st.write(
"- clip ๐ค: A deep learning model that can understand and generate natural language descriptions of images and videos. It uses a contrastive learning approach to learn joint representations of text and images."
)
st.write(
"- Image Classification ๐ท: The process of assigning a label or category to an image based on its visual content."
)
st.write(
"- Face Detection ๐ท: The process of locating and identifying human faces in images or videos."
)
st.write(
"- Prototypical Networks ๐ค: A type of few-shot learning algorithm that learns a prototype representation of each class based on a few examples. It can be used for tasks such as image classification and object detection."
)
st.write(
"- Grad-CAM ๐ก๏ธ: A technique for visualizing the regions of an image that a deep learning model uses to make a prediction. It can help to interpret and explain the model's behavior."
)
st.write(
"- Support Set ๐ค: A type of machine learning that involves training a model on a small number of examples from each class. It can be used for tasks such as image classification and object detection."
)
st.write(
"- Freeze Model โ๏ธ: The process of fixing the weights of a deep learning model during training to prevent them from being updated. This is often done when fine-tuning a pre-trained model."
)
st.write(
"- Pretrained Model ๐: A deep learning model that has been trained on a large dataset and can be used as a starting point for other tasks."
)
st.write(
"- Confidence Score ๐ฏ: A measure of how confident a deep learning model is in its predictions. It is often represented as a probability between 0 and 1."
)
st.write(
"- Similarity Score ๐: A metric that measures how similar two things are based on a certain criteria or feature."
)
st.write(
"- Inference Time โฑ๏ธ: The time it takes for an AI model to make a prediction or inference on a new input. It is an important metric for measuring the speed and efficiency of an AI system."
)
st.write(
"- Image Embeddings ๐ผ๏ธ: A compact numerical representation of an image that captures its features and can be used for tasks such as image similarity and search."
)
st.write(
"- Zero Shot Image Classification ๐ซ: A type of image classification that can recognize classes that were not present in the training data. It is achieved by using a pre-trained model and leveraging semantic relationships between classes"
)
st.write(
"- Streamlit ๐: An open-source framework used for building web applications for machine learning and data science. It allows developers to quickly create and share interactive applications without requiring knowledge of web development."
)
st.write(
"- Anime ๐: A style of Japanese animation that often features colorful graphics, vibrant characters, and fantastical themes."
)
st.write(
"- Hunter X Hunter ๐: A popular Japanese manga and anime series about a young boy named Gon Freecss who aspires to become a professional Hunter and search for his father. The series is known for its complex characters and intricate storyline."
)
|