-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmkdocs.yaml
62 lines (62 loc) · 1.96 KB
/
mkdocs.yaml
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
site_name: Proyecto ML de Emociones en Música Turca
theme:
name: material
features:
- navigation.tabs
- navigation.sections
- navigation.expand
- search.highlight
plugins:
- search
- mkdocstrings:
handlers:
python:
setup_commands:
- import sys
- sys.path.append(".")
selection:
docstring_style: google
nav:
- Inicio: "index.md"
- Gobernanza: "governance.md"
- Primeros Pasos:
- "Instalación": "getting-started/installation.md"
- "Ejemplos": "getting-started/examples.md"
- "Quickstart": "getting-started/quickstart.md"
- Datos:
- "Descripción General de Datos": "data/overview.md"
- "Caracteristicas": "data/features.md"
- "Pre-procesamiento": "data/preprocessing.md"
- Modelo:
- "Arquitectura del Modelo": "model/architecture.md"
- "Pipeline de Entrenamiento": "model/training.md"
- "Evaluación del Modelo": "model/evaluation.md"
- "Inferencia": "model/inference.md"
- MLOps:
- "Pipeline": "mlops/pipeline.md"
- "Guía de Reproducibilidad": "mlops/reproducibility.md"
- Referencia de API:
- "Pipeline": "api/pipeline.md"
- API:
- "Descripción General": "api/index.html"
- "Conjunto de Datos": "api/dataset.html"
- "Configuración": "api/config.html"
- "Selección de Características": "api/feature_selection.html"
- "Características": "api/features.html"
- "Evaluación del Modelo": "api/model_evaluation_utils.html"
- "Entrenamiento": "api/modeling/train.html"
- "Predicción": "api/modeling/predict.html"
- "Gráficos": "api/plots.html"
markdown_extensions:
- pymdownx.highlight
- pymdownx.tabbed
- pymdownx.arithmatex
- admonition
- footnotes
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- toc:
permalink: true