Skip to content

Commit b69804f

Browse files
authored
note-content-fixer: diagramas lote 33 — presentaciones, ML pipeline, marketing mix (#38)
1 parent dee95ee commit b69804f

4 files changed

Lines changed: 97 additions & 0 deletions

File tree

pages/artificial_intelligence/ruta_de_aprendisaje/1.fundamentos_inteligencia_artificial/2_fundamentos_estadistica_aprendizaje_automatico.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,32 @@ tags:
1010

1111
# Fundamentos de Estadística y Aprendizaje Automático
1212

13+
## Flujo de un Proyecto de Machine Learning
14+
15+
```mermaid
16+
flowchart TD
17+
DATA["📊 Datos Crudos\n(imágenes, texto, sensores)"]
18+
DATA --> EDA["🔍 Estadística Descriptiva\n(media, mediana, varianza,\nhistogramas, outliers)"]
19+
EDA --> SPLIT["✂️ División del Dataset\nTrain / Validation / Test"]
20+
SPLIT --> MODEL["🧠 Selección de Modelo"]
21+
MODEL --> REG["📈 Regresión Lineal\n(predecir números)"]
22+
MODEL --> CLAS["🏷️ Clasificación\n(spam/no-spam, gato/perro)"]
23+
MODEL --> TREE["🌲 Árbol de Decisión\n(preguntas sí/no)"]
24+
25+
REG --> TRAIN["⚙️ Entrenamiento"]
26+
CLAS --> TRAIN
27+
TREE --> TRAIN
28+
29+
TRAIN --> EVAL["📏 Evaluación\n(accuracy, precisión,\nrecall, MAE, MSE)"]
30+
EVAL -->|"overfitting/underfitting"| MODEL
31+
EVAL -->|"modelo OK"| PROD["🚀 Producción\n(recomendadores, detección\nde fraude, clasificadores)"]
32+
33+
style DATA fill:#1e1e2e,stroke:#61dafb,color:#f8f8f2
34+
style TRAIN fill:#1e1e2e,stroke:#ffd700,color:#f8f8f2
35+
style EVAL fill:#1e1e2e,stroke:#64ffda,color:#f8f8f2
36+
style PROD fill:#1e1e2e,stroke:#50fa7b,color:#f8f8f2
37+
```
38+
1339
## 1. ¿Qué son datos, estadística y machine learning?
1440

1541
- Qué es un dato, conjuntos de datos, ejemplos cotidianos (fotos, texto, sensores).

pages/leadership/como_hacer_presentaciones.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,27 @@ Hacer buenas presentaciones orales requiere práctica, preparación y el desarro
1818

1919
- [How to Speak](how_to_speak_by_patrick_winston.md)
2020

21+
```mermaid
22+
flowchart TD
23+
PREP["📋 1. Preparar\nel Contenido"] --> FLOW["🔗 2. Hilo\nConductor"]
24+
FLOW --> BODY["🤲 3. Gesticular\nCorrectamente"]
25+
BODY --> VOICE["🎙️ 4. Respiración\ny Control de Voz"]
26+
VOICE --> PRACT["🔄 5. Practicar\nRegularmente"]
27+
PRACT --> NERV["🧘 6. Superar\nlos Nervios"]
28+
NERV --> EXEC["🎯 Presentación"]
29+
EXEC --> EVAL["📊 7. Evaluación\nPost-Presentación"]
30+
EVAL -->|"mejora continua"| PREP
31+
32+
PREP --> P1["Objetivo claro\nIntro + Dev + Cierre"]
33+
FLOW --> P2["Transiciones suaves\nHistorias y ejemplos"]
34+
VOICE --> P3["Tono variado\nPausas con propósito"]
35+
36+
style EXEC fill:#1e1e2e,stroke:#ffd700,color:#f8f8f2
37+
style PREP fill:#1e1e2e,stroke:#61dafb,color:#f8f8f2
38+
style EVAL fill:#1e1e2e,stroke:#50fa7b,color:#f8f8f2
39+
style NERV fill:#1e1e2e,stroke:#bd93f9,color:#f8f8f2
40+
```
41+
2142
---
2243

2344
### **1. Preparar el contenido con anticipación**

pages/leadership/how_to_speak_by_patrick_winston.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,31 @@ In MIT talk "How To Speak" are lots of useful insight to improve the way of spea
3131
- How to Stop: Final Slide, Final Words
3232
- Final Words: Joke, Thank You, Examples
3333

34+
## Marco de "How to Speak"
35+
36+
```mermaid
37+
flowchart LR
38+
SPEAK["🎤 How to Speak\n(Patrick Winston)"]
39+
40+
SPEAK --> START["🚀 Cómo Empezar\n(no con un chiste,\nsí con una promesa)"]
41+
SPEAK --> TOOLS["🛠️ Herramientas\nde Presentación"]
42+
SPEAK --> MODES["🎯 Modos de\nPresentación"]
43+
SPEAK --> END["🏁 Cómo Terminar\n(contribución, no\n'thank you')"]
44+
45+
TOOLS --> BOARD["🖊️ Pizarrón\n(engagement, ritmo)"]
46+
TOOLS --> SLIDES["📊 Slides\n(limpieza, sin\nbullets de texto)"]
47+
TOOLS --> PROPS["🔧 Props\n(objetos reales\npara anclaje)"]
48+
49+
MODES --> INFORM["📢 Informar\n(promesa + inspiración)"]
50+
MODES --> PERSUADE["💡 Persuadir\n(oral exam / job talk)"]
51+
MODES --> FAMOUS["🏆 Hacerse Conocido\n(slogan, símbolo, sorpresa)"]
52+
53+
style SPEAK fill:#1e1e2e,stroke:#ffd700,color:#f8f8f2
54+
style TOOLS fill:#1e1e2e,stroke:#61dafb,color:#f8f8f2
55+
style MODES fill:#1e1e2e,stroke:#bd93f9,color:#f8f8f2
56+
style END fill:#1e1e2e,stroke:#50fa7b,color:#f8f8f2
57+
```
58+
3459
## Personal Notes
3560
I use a lot of tips in slides mainly, trying to make clean, concise and useful slides to present new topics, ideas and other subjects.
3661

pages/sw_eng_specialization/marketing.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,31 @@ tags:
1414

1515
---
1616

17+
## Marketing Mix para Software
18+
19+
```mermaid
20+
flowchart TD
21+
STRAT["🎯 Estrategia Comercial\n(planeamiento estratégico)"]
22+
23+
STRAT --> MIX["📦 Marketing Mix\n(4Ps)"]
24+
MIX --> PROD["🛍️ Producto\n(diferenciación,\nposicionamiento, marca)"]
25+
MIX --> PRICE["💲 Precio\n(estrategias de precio,\ncondiciones de pago)"]
26+
MIX --> PROMO["📣 Comunicación\n(publicidad, planificación\nde medios, integradas)"]
27+
MIX --> PLACE["🌐 Distribución\n(canales, licencias,\nexportación)"]
28+
29+
STRAT --> SVC["⚙️ Marketing de Servicios\n(software como servicio)"]
30+
STRAT --> INTL["🌍 Marketing Internacional\n(globalización, dumping,\nlicencias de fabricación)"]
31+
32+
STRAT --> CTRL["📊 Evaluación y Control\n(KPIs, retroalimentación,\nreplanificación)"]
33+
CTRL -->|"ajuste continuo"| STRAT
34+
35+
style STRAT fill:#1e1e2e,stroke:#ffd700,color:#f8f8f2
36+
style MIX fill:#1e1e2e,stroke:#bd93f9,color:#f8f8f2
37+
style SVC fill:#1e1e2e,stroke:#61dafb,color:#f8f8f2
38+
style INTL fill:#1e1e2e,stroke:#64ffda,color:#f8f8f2
39+
style CTRL fill:#1e1e2e,stroke:#50fa7b,color:#f8f8f2
40+
```
41+
1742
## Contenidos
1843

1944
Manejo de la estrategia comercial y de distintas técnicas y herramientas del proceso de marketing en el software. Formulación de la estrategia comercial. Marketing y sistema de información. Planeamiento estratégico de marketing. Marketing mix. Evaluación, implantación y control de la estrategia. Estrategias y acciones sobre producto: diferenciación y posicionamiento. Consistencia entre las decisiones de producto y la estrategia. Marca. Servicio. Estrategias y acciones sobre precio y condiciones de pago. Estrategias y acciones sobre comunicación. La inversión publicitaria. Planificación de medios. Acciones integradas. Marketing de servicios. Marketing de servicios para la industria del software. Marketing internacional. Globalización. Exportación. Licencias de fabricación. Estrategias intermedias. Políticas arancelarias y barreras para –arancelarias. El dumping

0 commit comments

Comments
 (0)