As part of my 8th Semester subject, Computational Intelligence is a big subfield within Artificial Intelligence. Algorithms based on this paradigm take inspiration from biological, cognitive and liguistical proccesses.
git clone https://github.com/Daniels1610/CI008-Dagraz.git
After you cloned this repository, open it in your favorite IDE, and execute the following commands on your terminal:
- Create a python virtual environment
python -m venv venv
- Activate your newly created venv:
On Mac/Linux:
source venv/bin/activate
On Windows:
venv\Scripts\activate
- Install the project's libraries from requirements.txt file
pip install -r requirements.txt
- Install all the modules used within the repository.
python setup.py install
- Build the modules into the project
python setup.py build
Nice!!, now you are ready to execute the .ipynb files found in exercises, labs and exams directories. When selecting a notebook, make sure to select the Kernel that corresponds to your venv python version.