├── .gitignore ├── Makefile ├── README.md ├── beamercolorthemesustech.sty ├── figures ├── loss.pdf └── sustech.pdf ├── out └── slides.pdf ├── slides.tex └── sustech-logo.pdf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSTC/sustech-slides/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSTC/sustech-slides/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSTC/sustech-slides/HEAD/README.md -------------------------------------------------------------------------------- /beamercolorthemesustech.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSTC/sustech-slides/HEAD/beamercolorthemesustech.sty -------------------------------------------------------------------------------- /figures/loss.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSTC/sustech-slides/HEAD/figures/loss.pdf -------------------------------------------------------------------------------- /figures/sustech.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSTC/sustech-slides/HEAD/figures/sustech.pdf -------------------------------------------------------------------------------- /out/slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSTC/sustech-slides/HEAD/out/slides.pdf -------------------------------------------------------------------------------- /slides.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSTC/sustech-slides/HEAD/slides.tex -------------------------------------------------------------------------------- /sustech-logo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUSTC/sustech-slides/HEAD/sustech-logo.pdf --------------------------------------------------------------------------------