simran40 commited on
Commit
86f59c1
Β·
verified Β·
1 Parent(s): a83d9d5

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +101 -0
app.py ADDED
@@ -0,0 +1,101 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ with gr.Blocks(theme=gr.themes.Soft()) as demo:
4
+ gr.Markdown("""
5
+ # πŸ‘©β€πŸ’» Simranpreet Kaur
6
+ ### B.Tech CSE (Final Year) | AI & Machine Learning Enthusiast
7
+
8
+ πŸ“§ **Email:** spreetkaur937@gmail.com
9
+ 🌐 **Hugging Face:** https://huggingface.co/simran40
10
+
11
+ ---
12
+ """)
13
+
14
+ with gr.Row():
15
+ with gr.Column(scale=1):
16
+ gr.Markdown("""
17
+ ## πŸš€ About Me
18
+ I am a final-year **B.Tech Computer Science student** with strong interest in
19
+ **Artificial Intelligence, Machine Learning, and Computer Vision**.
20
+
21
+ I enjoy building real-world AI projects that solve practical problems
22
+ and demonstrate applied technical skills.
23
+ """)
24
+
25
+ with gr.Column(scale=1):
26
+ gr.Markdown("""
27
+ ## 🧠 Technical Skills
28
+ - **Programming:** Python
29
+ - **AI / ML:** Machine Learning, YOLO, TensorFlow, OpenCV
30
+ - **Data Analysis:** NumPy, Pandas, Matplotlib
31
+ - **Web:** HTML, CSS
32
+ - **Tools:** Git, GitHub, VS Code, Google Colab
33
+ """)
34
+
35
+ gr.Markdown("---")
36
+
37
+ gr.Markdown("""
38
+ ## πŸ“Œ Featured Projects
39
+ """)
40
+
41
+ with gr.Row():
42
+ with gr.Column():
43
+ gr.Markdown("""
44
+ ### πŸ‘οΈ Face Detection System
45
+ - Real-time face detection using OpenCV
46
+ - Implemented Haar Cascades & deep learning concepts
47
+ - Practical application in security & attendance systems
48
+ """)
49
+
50
+ with gr.Column():
51
+ gr.Markdown("""
52
+ ### 🎯 Object Detection (YOLO)
53
+ - Implemented object detection using YOLO
54
+ - Detected multiple objects in real-time video streams
55
+ - Used for automation and smart surveillance
56
+ """)
57
+
58
+ with gr.Row():
59
+ with gr.Column():
60
+ gr.Markdown("""
61
+ ### πŸ”Š Text-to-Speech System
62
+ - Converts written text into natural speech
63
+ - Useful for accessibility and voice-based applications
64
+ """)
65
+
66
+ with gr.Column():
67
+ gr.Markdown("""
68
+ ### πŸ’Ž Diamond Price Prediction
69
+ - Machine learning regression model
70
+ - Predicts diamond prices based on features
71
+ - Data preprocessing & visualization applied
72
+ """)
73
+
74
+ with gr.Row():
75
+ with gr.Column():
76
+ gr.Markdown("""
77
+ ### πŸ“ˆ Stock Market Analysis
78
+ - Analyzed stock market trends using historical data
79
+ - Applied data analysis and visualization techniques
80
+ """)
81
+
82
+ gr.Markdown("---")
83
+
84
+ gr.Markdown("""
85
+ ## πŸŽ“ Education
86
+ **B.Tech – Computer Science Engineering**
87
+ Final Year Student
88
+
89
+ ---
90
+
91
+ ## πŸ† Why This Portfolio?
92
+ - Demonstrates **practical AI & ML implementation**
93
+ - Industry-oriented project selection
94
+ - Clean, professional & deployable on Hugging Face
95
+ - Shows learning depth beyond theory
96
+
97
+ ---
98
+ ### ⭐ Thank you for visiting!
99
+ """)
100
+
101
+ demo.launch()