├── .gitignore ├── LICENSE ├── _config.yml ├── index.html ├── index.md ├── latex2pic.py ├── readme.html └── readme.md /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode/* 2 | my_tests/* -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blmoistawinde/ml_equations_latex/HEAD/LICENSE -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blmoistawinde/ml_equations_latex/HEAD/_config.yml -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blmoistawinde/ml_equations_latex/HEAD/index.html -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blmoistawinde/ml_equations_latex/HEAD/index.md -------------------------------------------------------------------------------- /latex2pic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blmoistawinde/ml_equations_latex/HEAD/latex2pic.py -------------------------------------------------------------------------------- /readme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blmoistawinde/ml_equations_latex/HEAD/readme.html -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blmoistawinde/ml_equations_latex/HEAD/readme.md --------------------------------------------------------------------------------