https://github.com/dexpota/udacity-machine-learning-introduction
Personal notes on Machine Learning Introduction course by Udacity
https://github.com/dexpota/udacity-machine-learning-introduction
Last synced: 12 months ago
JSON representation
Personal notes on Machine Learning Introduction course by Udacity
- Host: GitHub
- URL: https://github.com/dexpota/udacity-machine-learning-introduction
- Owner: dexpota
- License: mit
- Created: 2019-08-10T10:35:51.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-11-22T07:21:42.000Z (over 6 years ago)
- Last Synced: 2025-05-06T19:35:31.734Z (about 1 year ago)
- Language: Jupyter Notebook
- Homepage:
- Size: 10.7 MB
- Stars: 2
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.CODE
Awesome Lists containing this project
README
[ https://github.com/JamshedVesuna/vim-markdown-preview#requireme
ntsminiconda-installation]: https://docs.conda.io/en/latest/miniconda.html
[license-cc]: http://creativecommons.org/licenses/by-nc-sa/4.0/
[license-cc-badge]: https://img.shields.io/badge/License-CC%20BY--NC--SA-green.svg?style=for-the-badge
[license-mit]: https://opensource.org/licenses/MIT
[license-mit-badge]: https://img.shields.io/github/license/dexpota/kitty-themes.svg?style=for-the-badge
# Machine Learning Introduction
> These notes are based on the Udacity course.
[![Notes licesing badge][license-cc-badge]][license-cc]
[![Code licesing badge][license-mit-badge]][license-mit]
## Prerequisites
### Miniconda Installation on Ubuntu
1. Download the installation script from the official website:
```bash
wget -q https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
```
2. Execute the installation script and follow the procedure:
```bash
chmod +x Miniconda3-latest-Linux-x86_64.sh
./Miniconda3-latest-Linux-x86_64.sh
```
3. Recreate the conda environment:
```bash
conda env create --name udacity-ml --file environments.yml
```
You can find more information on how to install miniconda on your system
[here](miniconda-installation).
## TODO
- Use `rundoc` to test python snippets inside markdown text;