Logo Lanfrica

SchoolofAI-Algiers/AI2E-workshops

Type de record:

project
Créateur:
Sch
Hôte:
This repository contains all the material for AI2E workshops. # AI2E-workshops This repository includes material relating to the online program AI Everytime Everywhere (AI2E) of School of AI Algiers. It consists of a bunch of tutorial notebooks for various machine learning and deep learning topics. In these tutorials, we will guide you through the different steps of creating a machine learning application, from collecting the data to choosing the model and finally deploying it. During this journey, you'll discover many ML concepts and practice your acquired knowledge through different challenges and exercises. ## Table of Content ### Week 1 : 1. Discover the tools + Data Exploration (Part 1) 2. Data Exploration 3. General Machine learning Talk 4. Linear/Logistic Regression (Part 1) * Data Exploration Challenge ### Week 2 : 5. Linear/Logistic Regression (Part 2) 6. More Supervised Learning Models 7. Clustering ### Week 3 : 8. Neural Networks 9. Convolution Neural Networks 10. Style Transfer ## Dependencies 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. ### Install and Manage your Anaconda Environment 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: 1. Install `miniconda` on your computer, by selecting the latest Python version for your operating system. If you already have `conda` or `miniconda` installed, you should be able to skip this step and move on to step 2. 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. #### 1. Installation **Download** the latest version of `miniconda` that matches your system. | | Linux | Mac | Windows | |--------|-------|-----|-------- …