87 lines
3.4 KiB
Markdown
87 lines
3.4 KiB
Markdown
# Beginner-Friendly AI Examples
|
|
|
|
Welcome! Dis directory get simple, standalone examples wey go help you start wit AI and machine learning. Each example dey designed make e easy for beginners wit detailed comments and step-by-step explanation.
|
|
|
|
## 📚 Examples Overview
|
|
|
|
| Example | Description | Difficulty | Prerequisites |
|
|
|---------|-------------|------------|---------------|
|
|
| [Hello AI World](../../../examples/01-hello-ai-world.py) | Your first AI program - simple pattern recognition | ⭐ Beginner | Python basics |
|
|
| [Simple Neural Network](../../../examples/02-simple-neural-network.py) | Build a neural network from scratch | ⭐⭐ Beginner+ | Python, basic math |
|
|
| [Image Classifier](./03-image-classifier.ipynb) | Classify images wit pre-trained model | ⭐⭐ Beginner+ | Python, numpy |
|
|
| [Text Sentiment](../../../examples/04-text-sentiment.py) | Analyze text sentiment (positive/negative) | ⭐⭐ Beginner+ | Python |
|
|
|
|
## 🚀 Getting Started
|
|
|
|
### Prerequisites
|
|
|
|
Make sure say you don install Python (3.8 or higher dey recommended). Install di required packages:
|
|
|
|
```bash
|
|
# For Python scripts
|
|
pip install numpy
|
|
|
|
# For Jupyter notebooks (image classifier)
|
|
pip install jupyter numpy pillow tensorflow
|
|
```
|
|
|
|
Or use di conda environment wey dey di main curriculum:
|
|
|
|
```bash
|
|
conda env create --name ai4beg --file ../environment.yml
|
|
conda activate ai4beg
|
|
```
|
|
|
|
### Running di Examples
|
|
|
|
**For Python scripts (.py files):**
|
|
```bash
|
|
python 01-hello-ai-world.py
|
|
```
|
|
|
|
**For Jupyter notebooks (.ipynb files):**
|
|
```bash
|
|
jupyter notebook 03-image-classifier.ipynb
|
|
```
|
|
|
|
## 📖 Learning Path
|
|
|
|
We recommend say you follow di examples one by one:
|
|
|
|
1. **Start wit "Hello AI World"** - Learn di basics of pattern recognition
|
|
2. **Build a Simple Neural Network** - Understand how neural networks dey work
|
|
3. **Try di Image Classifier** - See AI in action wit real images
|
|
4. **Analyze Text Sentiment** - Explore natural language processing
|
|
|
|
## 💡 Tips for Beginners
|
|
|
|
- **Read di code comments well well** - Dem dey explain wetin each line dey do
|
|
- **Experiment!** - Try change values and see wetin go happen
|
|
- **No worry if you no understand everything** - Learning dey take time
|
|
- **Ask questions** - Use di [Discussion board](https://github.com/microsoft/AI-For-Beginners/discussions)
|
|
|
|
## 🔗 Next Steps
|
|
|
|
After you don complete dis examples, explore di full curriculum:
|
|
- [Introduction to AI](../lessons/1-Intro/README.md)
|
|
- [Neural Networks](../lessons/3-NeuralNetworks/README.md)
|
|
- [Computer Vision](../lessons/4-ComputerVision/README.md)
|
|
- [Natural Language Processing](../lessons/5-NLP/README.md)
|
|
|
|
## 🤝 Contributing
|
|
|
|
You find dis examples helpful? Help us make dem better:
|
|
- Report issues or suggest improvements
|
|
- Add more examples for beginners
|
|
- Improve documentation and comments
|
|
|
|
---
|
|
|
|
*Remember: Every expert na once beginner. Enjoy your learning! 🎓*
|
|
|
|
---
|
|
|
|
<!-- CO-OP TRANSLATOR DISCLAIMER START -->
|
|
**Disclaimer**:
|
|
Dis dokyument don use AI transle-shon service [Co-op Translator](https://github.com/Azure/co-op-translator) do di transle-shon. Even as we dey try make am correct, abeg sabi say transle-shon wey machine do fit get mistake or no dey accurate well. Di original dokyument for im native language na di one wey correct pass. For important mata, e good make una use professional human transle-shon. We no go fit take blame for any misunderstanding or wrong interpretation wey fit happen because una use dis transle-shon.
|
|
<!-- CO-OP TRANSLATOR DISCLAIMER END --> |