• Stars
    star
    188
  • Rank 200,538 (Top 5 %)
  • Language PostScript
  • Created about 8 years ago
  • Updated over 3 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

📝 SZU Undergraduate Thesis -- Recommender System

szuthesis

Shenzhen University Undergraduate Thesis

简介

论文主要关于推荐系统,重点研究在利用隐式反馈的推荐算法上如何融合内容信息, 算法模型为 Bayesian Personalized Ranking + Content,可以 点击这里 查看论文.

论文使用 LaTeX 撰写,对于 LaTeX 初学者撰写论文应当有一定借鉴意义.

在入门 LaTeX 的过程中,也积累了一些经验,新手或值得一看:

依赖项

安装 texlive >= 2019(详情请见 TeX Live 的官方网站

构建

latexmk

如果使用 latexmk 进行自动构建,执行以下命令

cd src/thesis/
latexmk -xelatex main.tex

更多关于 latexmk 的信息可以参考 这个入门指南 或是 latexmk 在 CTAN 上的主页

手动编译

如果想要手动编译,执行以下命令

cd src/thesis/
xelatex main.tex
bibtex main.aux
xelatex main.tex
xelatex main.tex

More Repositories