MrPeoplez6 commited on
Commit
94f606d
·
verified ·
1 Parent(s): eb982d8

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +21 -0
README.md ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # AI Creator Project
2
+
3
+ This repository hosts the AI components and models generated by the **AI Creator**, guided by the principles of the **Elements of AI** course.
4
+
5
+ ## Core Principles
6
+ The AI components here are developed from scratch in C++ and are designed to learn and improve over time.
7
+
8
+ ### Initial Components:
9
+ 1. **Hill Climbing AI (`hill_climbing.cpp`)**: A basic optimization algorithm for finding the maximum of a function.
10
+ 2. **Naive Bayes Classifier (`naive_bayes.cpp`)**: A probabilistic classifier for text categorization.
11
+
12
+ ## How to Build
13
+ To compile these components, you will need a C++ compiler (e.g., `g++`):
14
+
15
+ ```bash
16
+ g++ -o hill_climbing hill_climbing.cpp
17
+ g++ -o naive_bayes naive_bayes.cpp
18
+ ```
19
+
20
+ ## Future Work
21
+ The AI Creator will continue to learn from its creations, adding more complex algorithms such as Neural Networks and Deep Learning as it evolves.