Skip to content

Commit 145ae19

Browse files
committed
update the introduction
update the introduction
1 parent cbd99d0 commit 145ae19

File tree

1 file changed

+33
-18
lines changed

1 file changed

+33
-18
lines changed

Chapter_1/data_augmentation_with_python_chapter_1.ipynb

Lines changed: 33 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"metadata": {
55
"colab": {
66
"provenance": [],
7-
"authorship_tag": "ABX9TyNy8FkAGn4E4n9p2HthAnNz",
7+
"authorship_tag": "ABX9TyO20h+Op0dHnh+NC4tIIUcB",
88
"include_colab_link": true
99
},
1010
"kernelspec": {
@@ -28,24 +28,34 @@
2828
"<a href=\"https://colab.research.google.com/github/duchaba/Data-Augmentation-with-Python/blob/main/data_augmentation_with_python_chapter_1.ipynb\" target=\"_parent\"><img src=\"https://colab.research.google.com/assets/colab-badge.svg\" alt=\"Open In Colab\"/></a>"
2929
]
3030
},
31-
{
32-
"cell_type": "markdown",
33-
"source": [
34-
"# 💚 Data Augmentation with Python, Chapter 1"
35-
],
36-
"metadata": {
37-
"id": "qtnHR_uG0m7Z"
38-
}
39-
},
4031
{
4132
"cell_type": "markdown",
4233
"source": [
4334
"# 🌻 Welcome to Chapter 1, Data Augmentation Made Easy\n",
4435
"\n",
45-
"#### I am glad to see you using this Python Notebook. It is an integral part of the book. You are free to add new “code cells” to extend the functions, add your data, and explore new possibilities, such as downloading additional real-world datasets from the Kaggle website and coding the **Fun challenges**. I also encourage you to add “text cells” to keep your note in the Python notebook. \n",
4636
"\n",
47-
"####The book contains in-depth augmentation concepts and code explanations. I hope you enjoy reading the book and hacking code on this Python Notebook as much as I enjoy writing it. \n",
48-
"\n"
37+
"---\n",
38+
"\n",
39+
"I am glad to see you using this Python Notebook. 🐕\n",
40+
"\n",
41+
"The Python Notebook is an integral part of the book. You can add new “code cells” to extend the functions, add your data, and explore new possibilities, such as downloading additional real-world datasets from the Kaggle website and coding the **Fun challenges**. The **Fun facts**, in-depth discussion of the augmentation methods and Pluto, and an imaginary Siberian Huskey coding companion will guide you step by step. Pluto encourages adding “text cells” to keep your note in the Python Notebook. In other words, read the book and copy the relevant concept to this Python Notebook’s text-cells. Thus, you can have the information, the code, and idea in one place. \n",
42+
"\n",
43+
"\n",
44+
"💗 I hope you enjoy reading the book and hacking code as much as I enjoy writing it. \n",
45+
"\n",
46+
"\n",
47+
"## 🌟 Amazon Book\n",
48+
"\n",
49+
"---\n",
50+
"\n",
51+
"- The book is available on the Amazon Book website: \n",
52+
" - https://www.amazon.com/dp/1803246456\n",
53+
"\n",
54+
"\n",
55+
"- The original Python Notebook is on: \n",
56+
" - https://github.com/PacktPublishing/Data-Augmentation-with-Python/blob/main/Chapter_1/data_augmentation_with_python_chapter_1.ipynb \n",
57+
"\n",
58+
"- 🚀 Click on the blue \"Open in Colab\" button at the top of this page to begin hacking.\n"
4959
],
5060
"metadata": {
5161
"id": "a5EqgaYW08Cm"
@@ -54,21 +64,24 @@
5464
{
5565
"cell_type": "markdown",
5666
"source": [
57-
"# 😀 Excerpt from Chapter 1, Data Augmentation Made Easy\n",
67+
"## 😀 Excerpt from Chapter 1, Data Augmentation Made Easy\n",
68+
"\n",
69+
"---\n",
5870
"\n",
59-
"> In case you haven’t bought the book. Here is an excerpt from the first page of Chapter 1. The book is on the Amazon Book website: https://www.amazon.com/dp/1803246456\n",
71+
"> In case you haven’t bought the book. Here is an teaser from the first page of Chapter 1.\n",
6072
"\n",
73+
"---\n",
6174
"\n",
6275
"Data augmentation is essential for developing a successful Deep Learning (DL) project. However, data scientists and developers often overlook this crucial step. It is not a secret that you will spend the majority of the project time gathering, cleaning, and augmenting the dataset in a real-world DL project. Thus, learning how to expand the dataset without purchasing new data is essential.This book covers standard and advanced techniques for extending the image, text, audio, and tabular dataset. Furthermore, there is a discussion on data biases, and the coding lessons are on Jupyter Python Notebooks. \n",
6376
"\n",
6477
"Chapter 1 introduces the data augmentation concepts, sets up the coding environment, creates the foundation class, and later chapters explain techniques in detail, including Python coding. The effective use of data augmentation is the proven technique between success and failure in Machine Learning (ML). Many real-world ML projects stay in the conceptual phase because of insufficient data for training the ML model. Data augmentation is a cost-effective technique to increase the dataset, lower the training error rate, and produce a more accurate prediction and forecast. \n",
6578
"\n",
66-
"\n",
79+
"---\n",
6780
">**Fun fact**\n",
6881
"\n",
6982
">The car gasoline analogy is helpful for students who first learn about data augmentation and AI. You can think of data for the AI engine as the gasoline and data augmentation as the additive, like the Chevron Techron fuel cleaner, that makes your car engine run faster, smoother, and further without extra petrol.\n",
7083
"\n",
71-
"\n",
84+
"---\n",
7285
"\n",
7386
"In Chapter 1, we’ll define the data augmentation role and the limitation of how much to extend the data without changing the data integrity. We’ll briefly discuss the different types of input data, such as image, text, audio, and tabular data, and the challenges in supplementing the data. Finally, we’ll set up the system requirements and the programming style in the accompanying Jupyter Python Notebook. \n",
7487
"\n",
@@ -90,7 +103,9 @@
90103
"\n",
91104
"Let’s start with augmentation role. \n",
92105
"\n",
93-
"[end of excerpt]"
106+
"---\n",
107+
"\n",
108+
"🌴 *end of excerpt from the book*\n"
94109
],
95110
"metadata": {
96111
"id": "0Mo-idJS3eDh"

0 commit comments

Comments
 (0)