Spaces:
Running
Running
Delete backup4.app.py
Browse files- backup4.app.py +0 -349
backup4.app.py
DELETED
@@ -1,349 +0,0 @@
|
|
1 |
-
import streamlit as st
|
2 |
-
import streamlit.components.v1 as components
|
3 |
-
|
4 |
-
# --------------------------
|
5 |
-
# Mermaid Renderer Function
|
6 |
-
# --------------------------
|
7 |
-
def render_mermaid(mermaid_code, height=300):
|
8 |
-
"""Render a mermaid diagram using an HTML snippet in a Streamlit component."""
|
9 |
-
html_code = f"""
|
10 |
-
<html>
|
11 |
-
<head>
|
12 |
-
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/mermaid.min.js"></script>
|
13 |
-
<style>
|
14 |
-
body {{
|
15 |
-
background-color: white;
|
16 |
-
font-family: sans-serif;
|
17 |
-
}}
|
18 |
-
</style>
|
19 |
-
</head>
|
20 |
-
<body>
|
21 |
-
<div class="mermaid">
|
22 |
-
{mermaid_code}
|
23 |
-
</div>
|
24 |
-
<script>
|
25 |
-
mermaid.initialize({{startOnLoad:true}});
|
26 |
-
</script>
|
27 |
-
</body>
|
28 |
-
</html>
|
29 |
-
"""
|
30 |
-
components.html(html_code, height=height)
|
31 |
-
|
32 |
-
# --------------------------
|
33 |
-
# Markdown Outlines for Each Area
|
34 |
-
# --------------------------
|
35 |
-
markdown_areas = {
|
36 |
-
"1. ๐ฅ Leadership Management Collaboration LeCo": r'''
|
37 |
-
1. ๐ฅ Leadership Management Collaboration LeCo
|
38 |
-
''',
|
39 |
-
"2. ๐ Security Compliance Reliability SeCo": r'''
|
40 |
-
2. ๐ Security Compliance Reliability SeCo
|
41 |
-
''',
|
42 |
-
"3. ๐ Data Engineering Analytics Data Governance DaEn": r'''
|
43 |
-
3. ๐ Data Engineering Analytics Data Governance DaEn
|
44 |
-
''',
|
45 |
-
"4. ๐ข Community OpenSource Communication CoOS": r'''
|
46 |
-
4. ๐ข Community OpenSource Communication CoOS
|
47 |
-
''',
|
48 |
-
"5. ๐ฑ FullStack UI Mobile Product Development FuMo": r'''
|
49 |
-
5. ๐ฑ FullStack UI Mobile Product Development FuMo
|
50 |
-
''',
|
51 |
-
"6. ๐ป Software Cloud MLOps Infrastructure SCMI": r'''
|
52 |
-
6. ๐ป Software Cloud MLOps Infrastructure SCMI
|
53 |
-
''',
|
54 |
-
"7. ๐ค Machine Learning AI Model Development MLAI": r'''
|
55 |
-
7. ๐ค Machine Learning AI Model Development MLAI
|
56 |
-
''',
|
57 |
-
"8. ๐ง Systems Infrastructure LowLevel Engineering SyIn": r'''
|
58 |
-
8. ๐ง Systems Infrastructure LowLevel Engineering SyIn
|
59 |
-
''',
|
60 |
-
"9. ๐ฏ Specialized Domains Emerging Technologies SpDo": r'''
|
61 |
-
9. ๐ฏ Specialized Domains Emerging Technologies SpDo
|
62 |
-
'''
|
63 |
-
}
|
64 |
-
|
65 |
-
# --------------------------
|
66 |
-
# Mermaid Diagrams for Each Area
|
67 |
-
# --------------------------
|
68 |
-
mermaid_areas = {
|
69 |
-
"1. ๐ฅ Leadership Management Collaboration LeCo": r'''
|
70 |
-
graph LR
|
71 |
-
LeCo["๐ผLeCo๐ฅ Leadership and Collaboration"]
|
72 |
-
LeCo -->|๐ Guides| LeCo1a["1. ๐ Strategic and Cross-Functional Leadership - Global strategy, team coordination and vendor management"]
|
73 |
-
LeCo -->|๐ค Supports| LeCo1b["2. ๐ค Team Building and Agile Collaboration - Coaching, agile processes and stakeholder management"]
|
74 |
-
LeCo -->|๐ก Innovates| LeCo1c["3. ๐ก Domain Expertise and Innovation - Deep AI knowledge and product strategy"]
|
75 |
-
''',
|
76 |
-
"2. ๐ Security Compliance Reliability SeCo": r'''
|
77 |
-
graph LR
|
78 |
-
SeCo["๐SeCo๐ Security and Compliance"]
|
79 |
-
SeCo -->|๐ก๏ธ Protects| SeCo1["1. ๐ก๏ธ Security Operations and Incident Response - Incident management, pen testing and vulnerability assessment"]
|
80 |
-
SeCo -->|โ
Regulates| SeCo2["2. โ
Compliance and Governance - Data quality, compliance policies and IAM"]
|
81 |
-
SeCo -->|๐ Secures| SeCo3["3. ๐ System Hardening and Automation - Secure HPC, ML, Python, Bash automation and cost optimization"]
|
82 |
-
''',
|
83 |
-
"3. ๐ Data Engineering Analytics Data Governance DaEn": r'''
|
84 |
-
graph LR
|
85 |
-
DaEn["๐ชDaEn๐ Data Engineering"]
|
86 |
-
DaEn -->|๐ง Processes| DaEn1["1. ๐ง Data Processing and Ingestion - Multi-modal data, event handling and ETL"]
|
87 |
-
DaEn -->|๐ Analyzes| DaEn2["2. ๐ Analytics, Forecasting and Visualization - BI, dashboards and forecasting"]
|
88 |
-
DaEn -->|๐ Governs| DaEn3["3. ๐ Data Governance and Quality - Modeling, warehousing and stakeholder communications"]
|
89 |
-
''',
|
90 |
-
"4. ๐ข Community OpenSource Communication CoOS": r'''
|
91 |
-
graph LR
|
92 |
-
CoOS["๐ชCoOS๐ข Community OpenSource"]
|
93 |
-
CoOS -->|๐ Documents| CoOS1["1. ๐ Technical Documentation and Demos - Code examples, demos and notebooks"]
|
94 |
-
CoOS -->|๐ฌ Engages| CoOS2["2. ๐ฌ Community Engagement and Collaboration - Public speaking, social media and collaborations"]
|
95 |
-
''',
|
96 |
-
"5. ๐ฑ FullStack UI Mobile Product Development FuMo": r'''
|
97 |
-
graph LR
|
98 |
-
FuMo["โFuMo๐ฑ FullStack UI Mobile"]
|
99 |
-
FuMo -->|๐ฑ Develops| FuMo1["1. ๐ฑ Mobile and Web App Development - Full stack development, CI/CD and API design"]
|
100 |
-
FuMo -->|๐จ Designs| FuMo2["2. ๐จ UI, UX and Frontend Integration - React, Next.js, TypeScript and intuitive design"]
|
101 |
-
FuMo -->|๐ Connects| FuMo3["3. ๐ Backend and Cross-Platform Tools - Python, Node, cloud microservices and ML bridging"]
|
102 |
-
''',
|
103 |
-
"6. ๐ป Software Cloud MLOps Infrastructure SCMI": r'''
|
104 |
-
graph LR
|
105 |
-
SoCM["๐ฒSoCM๐ป Software Cloud MLOps"]
|
106 |
-
SoCM -->|๐ ๏ธ Optimizes| SCMI1["1. ๐ ๏ธ Developer Tooling and Observability - Full stack dev, debugging and SRE practices"]
|
107 |
-
SoCM -->|๐ค Automates| SCMI2["2. ๐ค ML Frameworks and Automation - Python APIs, PyTorch, Keras and Ray, Horovod"]
|
108 |
-
SoCM -->|๐ Pipelines| SCMI3["3. ๐ Data Pipelines and Processing - Spark, Airflow and ETL pipelines"]
|
109 |
-
SoCM -->|โ๏ธ Deploys| SCMI4["4. โ๏ธ Cloud and Infrastructure Provisioning - Kubernetes, Docker, Terraform and cloud integration"]
|
110 |
-
''',
|
111 |
-
"7. ๐ค Machine Learning AI Model Development MLAI": r'''
|
112 |
-
graph LR
|
113 |
-
AIML["โ๏ธAIML๐ค AI Machine Learning"]
|
114 |
-
AIML -->|๐๏ธ Structures| MLAI1["1. ๐๏ธ Large-Scale Architectures and Retrieval - Transformers, RAG and vector DBs"]
|
115 |
-
AIML -->|โ๏ธ Experiments| MLAI2["2. โ๏ธ Experimentation and Distributed Training - RL, quantization and ablation studies"]
|
116 |
-
AIML -->|๐ก Deploys| MLAI3["3. ๐ก Application and API Development - Agentic AI, LLM inference and microservices"]
|
117 |
-
AIML -->|๐ Optimizes| MLAI4["4. ๐ Optimization and Monitoring - Performance tuning, scaling and reliability"]
|
118 |
-
''',
|
119 |
-
"8. ๐ง Systems Infrastructure LowLevel Engineering SyIn": r'''
|
120 |
-
graph LR
|
121 |
-
SyIn["๐ชSyIn๐ง Systems Infrastructure"]
|
122 |
-
SyIn -->|๐ง Integrates| SyIn1["1. ๐ง Hardware and OS Integration - Linux, embedded, C, C++"]
|
123 |
-
SyIn -->|โ๏ธ Tunes| SyIn2["2. โ๏ธ Performance and Tuning - Cross-layer tuning, throughput and load balancing"]
|
124 |
-
SyIn -->|๐ค Enhances| SyIn3["3. ๐ค Advanced ML and Automation - Cross-team innovation, observability and ServiceNow"]
|
125 |
-
SyIn -->|๐ Scales| SyIn4["4. ๐ Distributed and HPC Deployment - Data center HPC, ML, GPU orchestration and multi-GPU pipelines"]
|
126 |
-
''',
|
127 |
-
"9. ๐ฏ Specialized Domains Emerging Technologies SpDo": r'''
|
128 |
-
graph LR
|
129 |
-
SpDo["๐ฑSpDo๐ฏ Specialized Domains"]
|
130 |
-
SpDo -->|๐ฅ Visualizes| SpDo1["1. ๐ฅ Advanced CV and 3D Graphics - Neural rendering, reconstruction and graphics engines"]
|
131 |
-
SpDo -->|๐ Automates| SpDo2["2. ๐ Robotics and Autonomous Systems - Autonomous vehicles, sensor fusion and path planning"]
|
132 |
-
SpDo -->|๐ป Computes| SpDo3["3. ๐ป HPC and Hardware Integration - GPU, SoC modeling, HPC networking and prototyping"]
|
133 |
-
SpDo -->|๐ข Quantizes| SpDo4["4. ๐ข AI Quantization and Inference - Quantization, in-browser inference and neural sparse models"]
|
134 |
-
'''
|
135 |
-
}
|
136 |
-
|
137 |
-
# --------------------------
|
138 |
-
# Markdown Sections
|
139 |
-
# --------------------------
|
140 |
-
|
141 |
-
md_combined_outline = r'''
|
142 |
-
# ๐ Hands On ML App. Dev. with Mixture of Experts and Multiagent Skills and State of Art ML Architecture
|
143 |
-
1. ๐ผLeCo๐ฅ Leadership and Collaboration : Strategic leadership and team management.
|
144 |
-
2. ๐SeCo๐ Security and Compliance : Security operations, compliance, and system hardening.
|
145 |
-
3. ๐ชDaEn๐ Data Engineering : Data processing, analytics, and governance.
|
146 |
-
4. ๐ชCoOS๐ข Community OpenSource : Community engagement, documentation, and collaboration.
|
147 |
-
5. โFuMo๐ฑ FullStack UI Mobile : Mobile and web app development with ML integration.
|
148 |
-
6. ๐ฒSoCM๐ป Software Cloud MLOps : Cloud infrastructure, ML frameworks, and automation.
|
149 |
-
7. โ๏ธAIML๐ค AI Machine Learning : Largeโscale architectures, distributed training, and inference.
|
150 |
-
8. ๐ชSyIn๐ง Systems Infrastructure : Hardware, OS, and distributed HPC deployments.
|
151 |
-
9. ๐ฑSpDo๐ฏ Specialized Domains : Advanced CV, robotics, HPC, and AI quantization.
|
152 |
-
'''
|
153 |
-
|
154 |
-
md_submodels_outline = r'''
|
155 |
-
## 1. ๐ฅ Leadership Management Collaboration LeCo
|
156 |
-
1. **๐ Strategic and Cross-Functional Leadership - Global strategy, team coordination and vendor management**
|
157 |
-
2. **๐ค Team Building and Agile Collaboration - Coaching, agile processes and stakeholder management**
|
158 |
-
3. **๐ก Domain Expertise and Innovation - Deep AI framework knowledge and product strategy**
|
159 |
-
|
160 |
-
## 2. ๐ Security Compliance Reliability SeCo
|
161 |
-
1. **๐ก๏ธ Security Operations and Incident Response - Incident management, pen testing and vulnerability assessment**
|
162 |
-
2. **โ
Compliance and Governance - Data quality standards, compliance policies and IAM solutions**
|
163 |
-
3. **๐ System Hardening and Automation - Secure HPC, ML, Python, Bash automation and cost optimization**
|
164 |
-
|
165 |
-
## 3. ๐ Data Engineering Analytics Data Governance DaEn
|
166 |
-
1. **๐ง Data Processing and Ingestion - Multi, modal data, event handling and ETL pipelines**
|
167 |
-
2. **๐ Analytics, Forecasting and Visualization - BI, dashboards and forecasting**
|
168 |
-
3. **๐ Data Governance and Quality - Modeling, warehousing and stakeholder comms**
|
169 |
-
|
170 |
-
## 4. ๐ข Community OpenSource Communication CoOS
|
171 |
-
1. **๐ Technical Documentation and Demos - Code examples, demos and notebooks**
|
172 |
-
2. **๐ฌ Community Engagement and Collaboration - Public speaking, social media and collabs**
|
173 |
-
|
174 |
-
## 5. ๐ฑ FullStack UI Mobile Product Development FuMo
|
175 |
-
1. **๐ฑ Mobile and Web App Development - Full stack development, CI/CD and API design**
|
176 |
-
2. **๐จ UI, UX and Frontend Integration - React, Next.js, TypeScript and intuitive design**
|
177 |
-
3. **๐ Backend and Cross-Platform Tools - Python, Node, cloud microservices and ML bridging**
|
178 |
-
|
179 |
-
## 6. ๐ป Software Cloud MLOps Infrastructure SoCM
|
180 |
-
1. **๐ ๏ธ Developer Tooling and Observability - Full stack dev, debugging and SRE practices**
|
181 |
-
2. **๐ค ML Frameworks and Automation - Python APIs, PyTorch, Keras and Ray, Horovod**
|
182 |
-
3. **๐ Data Pipelines and Processing - Spark, Airflow and ETL pipelines**
|
183 |
-
4. **โ๏ธ Cloud and Infrastructure Provisioning - Kubernetes, Docker, Terraform and cloud integration**
|
184 |
-
|
185 |
-
## 7. ๐ค AI Machine Learning Model Development AIML
|
186 |
-
1. **๐๏ธ Large-Scale Architectures and Retrieval - Transformers, RAG and vector DBs**
|
187 |
-
2. **โ๏ธ Experimentation and Distributed Training - RL, quantization and ablation studies**
|
188 |
-
3. **๐ก Application and API Development - Agentic AI, LLM inference and microservices**
|
189 |
-
4. **๐ Optimization and Monitoring - Performance tuning, scaling and reliability**
|
190 |
-
|
191 |
-
## 8. ๐ง Systems Infrastructure LowLevel Engineering SyIn
|
192 |
-
1. **๐ง Hardware and OS Integration - Linux, embedded, C, C++**
|
193 |
-
2. **โ๏ธ Performance and Tuning - Cross-layer tuning, throughput and load balancing**
|
194 |
-
3. **๐ค Advanced ML and Automation - Cross-team innovation, observability and ServiceNow**
|
195 |
-
4. **๐ Distributed and HPC Deployment - Data center HPC, ML, GPU orchestration and multi-GPU pipelines**
|
196 |
-
|
197 |
-
## 9. ๐ฏ Specialized Domains Emerging Technologies SpDo
|
198 |
-
1. **๐ฅ Advanced CV and 3D Graphics - Neural rendering, reconstruction and graphics engines**
|
199 |
-
2. **๐ Robotics and Autonomous Systems - Autonomous vehicles, sensor fusion and path planning**
|
200 |
-
3. **๐ป HPC and Hardware Integration - GPU, SoC modeling, HPC networking and prototyping**
|
201 |
-
4. **๐ข AI Quantization and Inference - Quantization, in-browser inference and neural sparse models**
|
202 |
-
'''
|
203 |
-
|
204 |
-
md_glossary = r'''
|
205 |
-
# ๐ Glossary
|
206 |
-
1. **๐ง Systems Infrastructure SyIn:** Hardware and OS, level operations enabling computing environments.
|
207 |
-
2. **๐ป Software Cloud MLOps SCMI:** Tools and processes for managing ML workflows and cloud infrastructures.
|
208 |
-
3. **๐ค Machine Learning AI MLAI:** Techniques and architectures for developing and deploying AI models.
|
209 |
-
4. **๐ Data Engineering DaEn:** Methods for processing, analyzing and governing data.
|
210 |
-
5. **๐ Security and Compliance SeCo:** Practices ensuring system security and adherence to regulations.
|
211 |
-
6. **๐ฅ Leadership and Collaboration LeCo:** Strategies for effective team management and cross-functional coordination.
|
212 |
-
7. **๐ฑ FullStack UI Mobile FuMo:** End-to-end development of mobile and web interfaces integrating ML.
|
213 |
-
8. **๐ฏ Specialized Domains SpDo:** Focus areas in advanced tech such as computer vision, robotics and HPC.
|
214 |
-
9. **๐ข Community OpenSource CoOS:** Engagement with open-source communities and technical education.
|
215 |
-
10. **HPC:** High Performance Computing; large-scale computational systems and clusters.
|
216 |
-
11. **LLM:** Large Language Models; deep learning models for natural language processing.
|
217 |
-
12. **MLOps:** Machine Learning Operations; practices for deploying and managing ML systems.
|
218 |
-
'''
|
219 |
-
|
220 |
-
md_python_libraries = r'''
|
221 |
-
# ๐ Python Libraries Guide
|
222 |
-
1. **๐ฅ TensorFlow (tensorflow) -** Deep learning library for research and production.
|
223 |
-
2. **๐ค Huggingface Hub (huggingface_hub) -** Platform for sharing and accessing pre-trained models.
|
224 |
-
3. **๐ Transformers (transformers) -** Library for NLP and model inference.
|
225 |
-
4. **๐ฅ Torch (torch) -** PyTorch library for dynamic deep learning.
|
226 |
-
5. **๐ Streamlit (streamlit) -** Rapidly build interactive ML web apps.
|
227 |
-
6. **๐๏ธ Gradio (gradio) -** Create customizable web interfaces for ML models.
|
228 |
-
7. **๐ผ Pandas (pandas) -** Data manipulation and analysis.
|
229 |
-
8. **๐ข NumPy (numpy) -** Numerical computing and array operations.
|
230 |
-
9. **๐ฌ LangChain (langchain) -** Framework for building applications with language models.
|
231 |
-
10. **๐ค OpenAI (openai) -** API for accessing GPT models and AI services.
|
232 |
-
11. **๐ Azure MSAL (msal) -** Authentication library for Azure services.
|
233 |
-
12. **โ๏ธ Scikit-learn (scikit-learn) -** Machine learning tools for data mining and analysis.
|
234 |
-
13. **๐ Matplotlib (matplotlib) -** Plotting library for data visualization.
|
235 |
-
14. **๐ Seaborn (seaborn) -** Statistical data visualization.
|
236 |
-
15. **๐ Plotly (plotly) -** Interactive graphing library.
|
237 |
-
16. **๐ NLTK (nltk) -** Natural language processing toolkit.
|
238 |
-
17. **๐งช SciPy (scipy) -** Scientific and technical computing.
|
239 |
-
18. **โก FastAPI (fastapi) -** Build fast APIs for ML applications.
|
240 |
-
19. **๐ Dask (dask) -** Parallel computing with task scheduling.
|
241 |
-
20. **๐ Requests (requests) -** HTTP library for Python.
|
242 |
-
'''
|
243 |
-
|
244 |
-
md_js_libraries = r'''
|
245 |
-
# ๐ป JavaScript Libraries Guide
|
246 |
-
1. **๐ฅ React (react) -** Library for building UI components.
|
247 |
-
2. **โ๏ธ Redux (redux) -** Predictable state container for JavaScript apps.
|
248 |
-
3. **๐ Node.js (node) -** JavaScript runtime for building server-side applications.
|
249 |
-
4. **๐ป Express (express) -** Web framework for Node.js.
|
250 |
-
5. **๐ D3.js (d3) -** Library for dynamic, interactive data visualizations.
|
251 |
-
6. **๐ Chart.js (chart.js) -** Simple yet flexible charting library.
|
252 |
-
7. **๐ Webpack (webpack) -** Module bundler for JavaScript applications.
|
253 |
-
8. **โ๏ธ Babel (babel) -** Transpiler for next-generation JavaScript.
|
254 |
-
9. **๐ Next.js (next) -** React framework for server-side rendering.
|
255 |
-
10. **๐จ Tailwind CSS (tailwindcss) -** Utility-first CSS framework for rapid UI development.
|
256 |
-
11. **๐ jQuery (jquery) -** DOM manipulation library.
|
257 |
-
12. **๐ Lodash (lodash) -** Utility library for JavaScript.
|
258 |
-
13. **โฐ Moment.js (moment) -** Date library for parsing, validating and formatting dates.
|
259 |
-
14. **๐ก Axios (axios) -** Promise-based HTTP client.
|
260 |
-
15. **๐ฌ Socket.io (socket.io) -** Real-time communication library.
|
261 |
-
16. **๐ผ Vue.js (vue) -** Progressive framework for building user interfaces.
|
262 |
-
17. **๐
ฐ๏ธ Angular (angular) -** Platform for building mobile and desktop web applications.
|
263 |
-
18. **๐ฅ Ember.js (ember) -** Framework for creating ambitious web applications.
|
264 |
-
19. **๐ Mermaid.js (mermaid) -** Library for generating diagrams and flowcharts.
|
265 |
-
20. **๐ Three.js (three) -** Library for creating 3D graphics in the browser.
|
266 |
-
'''
|
267 |
-
|
268 |
-
md_picture_mnemonic = r'''
|
269 |
-
# ๐ผ Picture Mnemonic Outline
|
270 |
-
1. **๐ผ Lighthouse -** Represents #1, a beacon of guidance.
|
271 |
-
2. **๐ Eyeglasses -** Symbolizes #2, two lenses for clarity.
|
272 |
-
3. **๐ช Stool -** Denotes #3, three legs for stability.
|
273 |
-
4. **๐ช Window -** Four panes, representing #4.
|
274 |
-
5. **โ Hand -** Five fingers for #5.
|
275 |
-
6. **๐ฒ Dice -** Six sides symbolizing #6.
|
276 |
-
7. **โ๏ธ Cloud -** For #7, light and airy.
|
277 |
-
8. **๐ช Gate -** Represents #8, opening new paths.
|
278 |
-
9. **๐ฑ Cat -** Nine lives, symbolic of #9.
|
279 |
-
|
280 |
-
**Mnemonic:** A mnemonic is a memory aid using patterns or associations to enhance recall. Here, we apply the pegword technique by pairing each number with a vivid image to quickly remember complex information.
|
281 |
-
*(Adapted from McCarthy, M. J. 2007. Mastering the INFORMATION AGE - A Course in Working Smarter, Thinking Better, and Learning Faster. [1])*
|
282 |
-
|
283 |
-
[1] McCarthy, M. J. 2007. *Mastering the INFORMATION AGE - A Course in Working Smarter, Thinking Better, and Learning Faster*. Retrieved from https://www.example.com/reference
|
284 |
-
'''
|
285 |
-
|
286 |
-
md_tweet = r'''
|
287 |
-
# ๐ฆ Tweet Summary
|
288 |
-
Unlock your AI mastery with our densified skill tree - from LC to SD - each node paired with powerful mnemonics and vivid visuals (๐ผ๐๐ช๐ชโ๐ฒโ๏ธ๐ช๐ฑ) to boost memory and innovation. #AI #ML #Learning #Innovation
|
289 |
-
'''
|
290 |
-
|
291 |
-
# --------------------------
|
292 |
-
# Combined Mermaid Diagram (Overview)
|
293 |
-
# --------------------------
|
294 |
-
combined_mermaid = r'''
|
295 |
-
graph TD
|
296 |
-
LeCo["1. ๐ฅ Leadership and Collaboration - LeCo"]
|
297 |
-
SeCo["2. ๐ Security and Compliance - SeCo"]
|
298 |
-
DaEn["3. ๐ Data Engineering - DaEn"]
|
299 |
-
CoOS["4. ๐ข Community Open Source - CoOS"]
|
300 |
-
FuMo["5. ๐ฑ FullStack UI Mobile - FuMo"]
|
301 |
-
SoCM["6. ๐ป Software Cloud MLOps - SoCM"]
|
302 |
-
AIML["7. ๐ค AI Machine Learning - AIML"]
|
303 |
-
SyIn["8. ๐ง Systems Infrastructure - SyIn"]
|
304 |
-
SpDo["9. ๐ฏ Specialized Domains - SpDo"]
|
305 |
-
|
306 |
-
LeCo -->|๐งญ guides| SeCo
|
307 |
-
LeCo -->|๐ leads| AIML
|
308 |
-
LeCo -->|๐ค supports| SyIn
|
309 |
-
SeCo ---|๐ secures| AIML
|
310 |
-
SeCo ---|๐ก๏ธ protects| SoCM
|
311 |
-
AIML -->|๐ง feeds| DaEn
|
312 |
-
SoCM -->|โก powers| AIML
|
313 |
-
FuMo ---|๐ integrates with| SoCM
|
314 |
-
FuMo -->|โ extends to| SpDo
|
315 |
-
SpDo ---|โจ enhances| AIML
|
316 |
-
LeCo ---|๐๏ธ oversees| SoCM
|
317 |
-
CoOS ---|๐ค collaborates with| LeCo
|
318 |
-
CoOS ---|๐ฃ๏ธ informs| DaEn
|
319 |
-
SpDo ---|๐ shares with| CoOS
|
320 |
-
'''
|
321 |
-
|
322 |
-
# --------------------------
|
323 |
-
# Streamlit App Layout
|
324 |
-
# --------------------------
|
325 |
-
def main():
|
326 |
-
st.set_page_config(page_title="Densified Skill Tree", layout="wide")
|
327 |
-
|
328 |
-
# Optionally render combined outlines and submodels if desired:
|
329 |
-
st.markdown(md_combined_outline, unsafe_allow_html=True)
|
330 |
-
#st.markdown(md_submodels_outline, unsafe_allow_html=True)
|
331 |
-
|
332 |
-
# For each numbered area, display its markdown outline first, then its mermaid diagram.
|
333 |
-
for key in sorted(markdown_areas.keys(), key=lambda k: int(k.split('.')[0])):
|
334 |
-
st.markdown(markdown_areas[key], unsafe_allow_html=True)
|
335 |
-
if key in mermaid_areas:
|
336 |
-
render_mermaid(mermaid_areas[key], height=350)
|
337 |
-
|
338 |
-
# Render the combined mermaid diagram for an overview
|
339 |
-
render_mermaid(combined_mermaid, height=850)
|
340 |
-
|
341 |
-
# Display additional markdown sections
|
342 |
-
st.markdown(md_glossary, unsafe_allow_html=True)
|
343 |
-
st.markdown(md_python_libraries, unsafe_allow_html=True)
|
344 |
-
st.markdown(md_js_libraries, unsafe_allow_html=True)
|
345 |
-
st.markdown(md_picture_mnemonic, unsafe_allow_html=True)
|
346 |
-
st.markdown(md_tweet, unsafe_allow_html=True)
|
347 |
-
|
348 |
-
if __name__ == "__main__":
|
349 |
-
main()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|