1/2 sum f(Pij)(ui * vj - log Pij)
- mangnitude of ui vj: eventually capture log count
- skip gram: capture co-ocurances one window at a time
- glove: capture the cont of the overall statistics of how often these words appear [45:00]
d/df -log softmax(f_y) = [y - t] = δ slide 25
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
lyx --export latex master.lyx | |
lyx --export latex intro.lyx | |
lyx --export latex appendix.lyx | |
bibtex main | |
pdflatex main.tex | |
# diff | |
latexdiff --exclude-textcmd="section,subsection" master_submitted.tex master.tex > master_diff.tex |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#linux? | |
REM PDF-Pages.cmd | |
@echo off | |
del output.txt | |
for /r %1 %%f in (*.pdf) do pdfinfo.exe -meta "%%f" >out.txt & echo "%%f", | tr.exe -d "\r\n" >>output.txt & find "Pages:" out.txt | tr.exe -d "\r\n\055\056\072[:alpha:][:space:]" >>output.txt & echo , | tr.exe -d "\r\n" >>output.txt & find "File size:" out.txt | tr.exe -d "\055\056\072[:space:][:alpha:]" >>output.txt & echo. >>output.txt | |
del out.txt |
NewerOlder