During this journey, you'll discover many ML concepts and practice your acquired knowledge through different challenges and exercises.
- Discover the tools + Data Exploration (Part 1)
- Data Exploration
- General Machine learning Talk
- Linear/Logistic Regression (Part 1)
Although we will dedicate one workshop session to discovering the tools, this section helps you install all the necessary requirements to execute all the notebooks.
Anaconda is an open source package management system. It works on Linux, OS X and Windows, and was created for Python programs but can package and distribute any software.
Using Anaconda consists of the following:
- Install
miniconda
on your computer, by selecting the latest Python version for your operating system. If you already haveconda
orminiconda
installed, you should be able to skip this step and move on to step 2. - Create an anaconda environment using the environment.yml file included in this repository.
conda env create -f environment.yml
Note that the documentation of Anaconda is really useful, just check this link.
Download the latest version of miniconda
that matches your system.
Linux | Mac | Windows | |
---|---|---|---|
64-bit | 64-bit (bash installer) | 64-bit (bash installer) | 64-bit (exe installer) |
32-bit | 32-bit (bash installer) | 32-bit (exe installer) |
Install miniconda on your machine. Detailed instructions:
- Linux: http://conda.pydata.org/docs/install/quick.html#linux-miniconda-install
- Mac: http://conda.pydata.org/docs/install/quick.html#os-x-miniconda-install
- Windows: http://conda.pydata.org/docs/install/quick.html#windows-miniconda-install
School of AI Algiers Team =)