Spaces:
Running
Running
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,48 +1,40 @@
|
|
| 1 |
---
|
| 2 |
-
title:
|
| 3 |
emoji: π
|
| 4 |
colorFrom: blue
|
| 5 |
colorTo: pink
|
| 6 |
sdk: docker
|
| 7 |
pinned: false
|
|
|
|
| 8 |
---
|
|
|
|
| 9 |
|
| 10 |
-
|
| 11 |
-
We also recommend the [Quarto VS Code Extension](https://marketplace.visualstudio.com/items?itemName=quarto.quarto) which provides syntax highlighting, code completion, a preview button and more.
|
| 12 |
|
| 13 |
-
The
|
| 14 |
|
| 15 |
-
|
| 16 |
-
quarto preview src
|
| 17 |
-
```
|
| 18 |
|
| 19 |
-
|
| 20 |
|
| 21 |
-
|
| 22 |
|
| 23 |
-
|
| 24 |
-
|
|
|
|
|
|
|
| 25 |
|
| 26 |
-
|
| 27 |
|
| 28 |
-
|
| 29 |
|
| 30 |
-
|
| 31 |
-
|
| 32 |
-
|
| 33 |
|
| 34 |
-
|
| 35 |
-
import seaborn as sns
|
| 36 |
-
import matplotlib.pyplot as plt
|
| 37 |
|
| 38 |
-
|
| 39 |
-
tips = sns.load_dataset("tips")
|
| 40 |
|
| 41 |
-
|
| 42 |
-
|
| 43 |
-
g = sns.lmplot(x="total_bill", y="tip", data=tips, aspect=2)
|
| 44 |
-
g = (g.set_axis_labels("Total bill (USD)", "Tip").set(xlim=(0, 60), ylim=(0, 12)))
|
| 45 |
-
|
| 46 |
-
plt.title("Tip by Total Bill")
|
| 47 |
-
plt.show()
|
| 48 |
-
```
|
|
|
|
| 1 |
---
|
| 2 |
+
title: AI Cookbook
|
| 3 |
emoji: π
|
| 4 |
colorFrom: blue
|
| 5 |
colorTo: pink
|
| 6 |
sdk: docker
|
| 7 |
pinned: false
|
| 8 |
+
short_description: This repository is my personal collection of recipes and not
|
| 9 |
---
|
| 10 |
+
**Welcome to My AI Cookbook**
|
| 11 |
|
| 12 |
+
This repository is my personal collection of recipes and notebooks, documenting my journey of learning and exploring various aspects of Artificial Intelligence (AI). As a self-taught AI enthusiast, I created this cookbook to serve as a knowledge base, a "how-to" guide, and a reference point for my own projects and experiments.
|
|
|
|
| 13 |
|
| 14 |
+
**The Story Behind**
|
| 15 |
|
| 16 |
+
Over the past year, I've been fascinated by the rapidly evolving field of AI and its endless possibilities. To deepen my understanding and skills, I embarked on a self-learning journey, diving into various AI-related projects and topics. As I progressed, I realized the importance of documenting my learnings, successes, and failures. This cookbook is the culmination of that effort, a centralized hub where I can quickly find and revisit previous projects, takeaways, and insights.
|
|
|
|
|
|
|
| 17 |
|
| 18 |
+
**What You'll Find Here**
|
| 19 |
|
| 20 |
+
This cookbook is a living repository of my AI-related projects, experiments, and learnings. You'll find a diverse range of topics, including:
|
| 21 |
|
| 22 |
+
* **Recipes**: Step-by-step guides for implementing various AI concepts, models, and techniques using popular libraries and frameworks.
|
| 23 |
+
* **Notebooks**: Interactive Jupyter notebooks containing code, explanations, and visualizations for AI-related projects and experiments.
|
| 24 |
+
* **Project Write-ups**: Detailed descriptions of my projects, including goals, approaches, challenges, and outcomes.
|
| 25 |
+
* **Takeaways and Insights**: Key learnings, best practices, and lessons learned from my AI journey.
|
| 26 |
|
| 27 |
+
**Goals and Objectives**
|
| 28 |
|
| 29 |
+
This cookbook serves several purposes:
|
| 30 |
|
| 31 |
+
* **Personal Knowledge Base**: A centralized hub for my AI-related knowledge, allowing me to quickly recall and build upon previous projects and learnings.
|
| 32 |
+
* **Self-Learning Platform**: A platform for continuous learning, experimentation, and improvement in AI.
|
| 33 |
+
* **Community Sharing**: A resource for others to learn from, providing a glimpse into my AI journey and experiences.
|
| 34 |
|
| 35 |
+
**Stay Tuned**
|
|
|
|
|
|
|
| 36 |
|
| 37 |
+
As I continue to explore and learn, this cookbook will evolve, incorporating new projects, recipes, and insights. I hope you find this resource helpful, and I look forward to sharing my AI journey with you.
|
|
|
|
| 38 |
|
| 39 |
+
Best regards,
|
| 40 |
+
Sebastien De Greef
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|