Skip to content

Commit

Permalink
Agregar preparación para sección de embeddings y material
Browse files Browse the repository at this point in the history
  • Loading branch information
felipegonzalez committed Nov 1, 2023
1 parent 715db74 commit 5d20141
Show file tree
Hide file tree
Showing 10 changed files with 1,142 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/notas-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ jobs:
run: |
remotes::install_github("https://github.com/tidymodels/probably/", upgrade = "always", force = TRUE)
shell: Rscript {0}
- name: install wordvectors
run: |
remotes::install_github("bmschmidt/wordVectors", dependencies = TRUE, upgrade = "always", force = TRUE)
- name: Install others
run: |
install.packages(c("discrim"))
Expand Down
Empty file added datos/noticias/.gitkeep
Empty file.
7 changes: 7 additions & 0 deletions notas/15-reduccion-dim.qmd
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Aprendizaje no supervisado: reducción de dimensionalidad

```{r, include = FALSE}
library(tidyverse)
library(tidymodels)
cbbPalette <- c("#000000", "#E69F00", "#56B4E9", "#009E73", "#F0E442", "#0072B2", "#D55E00", "#CC79A7")
theme_set(theme_minimal())
```

En esta parte veremos técnicas de reducción de dimensionalidad que buscan preservar la mayor parte de la información contenida en los datos originales en una
representación más compacta que sea útil para hacer análisis o construir modelos.

Expand Down
1,100 changes: 1,100 additions & 0 deletions notas/16-recom-factorizacion.qmd

Large diffs are not rendered by default.

Binary file added notas/cache/noticias_vectors.bin
Binary file not shown.
Binary file added notas/figuras/1_neural_model.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added notas/figuras/cbow_fig.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added notas/figuras/div_muestra_1_dot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added notas/figuras/skipgram.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
32 changes: 32 additions & 0 deletions notas/referencias/book.bib
Original file line number Diff line number Diff line change
Expand Up @@ -186,3 +186,35 @@ @Book{goodfellow2016
note={\url{http://www.deeplearningbook.org}},
year={2016}
}

@article{bengio,
author = {Bengio, Yoshua and Ducharme, R{\'e}jean and Vincent, Pascal and Janvin, Christian},
title = {A Neural Probabilistic Language Model},
journal = {J. Mach. Learn. Res.},
issue_date = {3/1/2003},
volume = {3},
month = mar,
year = {2003},
issn = {1532-4435},
pages = {1137--1155},
numpages = {19},
url = {http://dl.acm.org/citation.cfm?id=944919.944966},
acmid = {944966},
publisher = {JMLR.org},
}
@article{word2vec,
author = {Tomas Mikolov and
Kai Chen and
Greg Corrado and
Jeffrey Dean},
title = {Efficient Estimation of Word Representations in Vector Space},
journal = {CoRR},
volume = {abs/1301.3781},
year = {2013},
url = {http://arxiv.org/abs/1301.3781},
archivePrefix = {arXiv},
eprint = {1301.3781},
timestamp = {Wed, 07 Jun 2017 14:42:25 +0200},
biburl = {https://dblp.org/rec/bib/journals/corr/abs-1301-3781},
bibsource = {dblp computer science bibliography, https://dblp.org}
}

0 comments on commit 5d20141

Please sign in to comment.