├── .gitignore ├── README.md ├── algorithms.md ├── code-editors.md ├── datasets.md ├── extra-course-materials.md ├── head.png ├── js-libraries.md ├── latex.md ├── linalg.md ├── neural-nets.md ├── probability-statistics.md ├── python.md ├── r.md ├── reddit.md └── spec-recommendations.md /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | README_with_comments.md 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goq/vvedenie-mashinnoe-obuchenie/HEAD/README.md -------------------------------------------------------------------------------- /algorithms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goq/vvedenie-mashinnoe-obuchenie/HEAD/algorithms.md -------------------------------------------------------------------------------- /code-editors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goq/vvedenie-mashinnoe-obuchenie/HEAD/code-editors.md -------------------------------------------------------------------------------- /datasets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goq/vvedenie-mashinnoe-obuchenie/HEAD/datasets.md -------------------------------------------------------------------------------- /extra-course-materials.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goq/vvedenie-mashinnoe-obuchenie/HEAD/extra-course-materials.md -------------------------------------------------------------------------------- /head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goq/vvedenie-mashinnoe-obuchenie/HEAD/head.png -------------------------------------------------------------------------------- /js-libraries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goq/vvedenie-mashinnoe-obuchenie/HEAD/js-libraries.md -------------------------------------------------------------------------------- /latex.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goq/vvedenie-mashinnoe-obuchenie/HEAD/latex.md -------------------------------------------------------------------------------- /linalg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goq/vvedenie-mashinnoe-obuchenie/HEAD/linalg.md -------------------------------------------------------------------------------- /neural-nets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goq/vvedenie-mashinnoe-obuchenie/HEAD/neural-nets.md -------------------------------------------------------------------------------- /probability-statistics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goq/vvedenie-mashinnoe-obuchenie/HEAD/probability-statistics.md -------------------------------------------------------------------------------- /python.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goq/vvedenie-mashinnoe-obuchenie/HEAD/python.md -------------------------------------------------------------------------------- /r.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goq/vvedenie-mashinnoe-obuchenie/HEAD/r.md -------------------------------------------------------------------------------- /reddit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goq/vvedenie-mashinnoe-obuchenie/HEAD/reddit.md -------------------------------------------------------------------------------- /spec-recommendations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/goq/vvedenie-mashinnoe-obuchenie/HEAD/spec-recommendations.md --------------------------------------------------------------------------------