This project was carried out by :
Brayan Puigsagur did the CNN part
Clément L. did the pre-processing part
Gabriel B. did the KNN part
Manon V. did the SVM part
Given some X-ray images, we will use machine learning to help doctors detecting pneumonia.
Conda allows you to create separate environments containing files, packages, and their dependencies that will not interact with other environments.
- Create a new environment and install a package in it.
We will name the environment zoidberg and install all the libraries and package of the IA.yml file. At the Anaconda Prompt or in your terminal window, type the following:
conda env create --file IA.yml -n zoidberg
- To use, or "activate" the new environment, type the following:
conda activate zoidberg
- To see a list of all your environments, type:
conda info --envs
- Change your current environment back to the default (base):
conda activate