sebdg commited on
Commit
84eddf5
β€’
1 Parent(s): c9e7f26

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +21 -29
README.md CHANGED
@@ -1,48 +1,40 @@
1
  ---
2
- title: Quarto Template
3
  emoji: πŸŒ–
4
  colorFrom: blue
5
  colorTo: pink
6
  sdk: docker
7
  pinned: false
 
8
  ---
 
9
 
10
- To get started working with quarto we recommend you first [install quarto](https://quarto.org/docs/get-started/) locally so that you can render the site without Docker.
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 quarto source is located in `src` and you can preview the site with:
14
 
15
- ```
16
- quarto preview src
17
- ```
18
 
19
- A web browser should open up with a live preview of the site.
20
 
21
- ## Making changes
22
 
23
- The `src/_quarto.yml` contains the site-level configuration for the quarto website and tells quarto which files to render, and how they should be organized.
24
- For example if you wanted to modify the [site navigation](https://quarto.org/docs/reference/site-navigation.html) you should modify this file.
 
 
25
 
26
- Quarto can render markdown, ipynb, and .qmd files, and you can mix formats in a single document.
27
 
28
- ## Executing code
29
 
30
- One of the main virtues of Quarto is that it lets you combine code and text in a single document.
31
- By default if you include a code chunk in your document, Quarto will execute that code and include the output in the rendered document.
32
- This is great for reproducibility and for creating documents that are always up-to-date.
33
 
34
- ```{python}
35
- import seaborn as sns
36
- import matplotlib.pyplot as plt
37
 
38
- # Sample data
39
- tips = sns.load_dataset("tips")
40
 
41
- # Create a seaborn plot
42
- sns.set_style("whitegrid")
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