Skip to content

Aleksis99/Artificial-Intelligence

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

38 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Artificial Intelligence

Repository with examples for the "Artificial Intelligence" course given by me @ Faculty of Mathematics and Informatics, Sofia University

Exercises' Topics

  • Problem Solving and Search
    • Uninformed (Blind) Search
    • Informed (Heuristic) Search
    • Constraint Satisfaction Problems
    • Genetic Algorithms
    • Games
  • Machine Learning
    • k - Nearest Neighbors
    • Naïve Bayes Classifier
    • Decision Tree
    • k Means
    • Neural Networks

Environment

The course python version is 12. In the requirements.txt file you will find all the necessary libraries to run the notebooks. You can install them with pip.

  pip install requirements.txt

Conda is recommended for managing you environment.

  1. To create an environment:

      conda create --name <my-env> python=3.12
    

    Replace <my-env> with the name of your environment.

  2. When conda asks you to proceed, type y:

    proceed ([y]/n)?

    This creates the myenv environment in /envs/. No packages will be installed in this environment.

  3. Then you need to activate your environment :

      conda activate <my-env>
    
  4. Then you can install the necessary libraries :

      pip install -r requirements.txt
    

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published