Upload README.md with huggingface_hub
Browse files
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.
|