You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/source/tutorials/tutorial.ipynb
+8-11Lines changed: 8 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -107,7 +107,7 @@
107
107
"cell_type": "markdown",
108
108
"metadata": {},
109
109
"source": [
110
-
"### 1. Using CleanVision to detect default issue types"
110
+
"### 1. Using CleanVision to detect issues in your dataset"
111
111
]
112
112
},
113
113
{
@@ -124,9 +124,6 @@
124
124
"# Initialize imagelab with your dataset\n",
125
125
"imagelab = Imagelab(data_path=dataset_path)\n",
126
126
"\n",
127
-
"# Visualize a few sample images from the dataset\n",
128
-
"imagelab.visualize(num_images=8)\n",
129
-
"\n",
130
127
"# Find issues\n",
131
128
"imagelab.find_issues()"
132
129
]
@@ -153,17 +150,17 @@
153
150
"cell_type": "markdown",
154
151
"metadata": {},
155
152
"source": [
156
-
"The main way to interface with your data is via the `Imagelab` class. This class can be used to understand the issues in your dataset at a high level (global overview) and low level (issues and quality scores for each image) as well as additional information about the dataset. It has three main attributes:\n",
153
+
"The main way to interface with your data is via the [Imagelab](https://cleanvision.readthedocs.io/en/latest/cleanvision/imagelab.html#cleanvision.imagelab.Imagelab) class. This class can be used to understand the issues in your dataset at a high level (global overview) and low level (issues and quality scores for each image) as well as additional information about the dataset. It has three main attributes:\n",
154
+
"\n",
157
155
"- `Imagelab.issue_summary`\n",
158
156
"- `Imagelab.issues`\n",
159
157
"- `Imagelab.info`\n",
160
158
"\n",
161
159
"#### imagelab.issue_summary\n",
162
-
"Dataframe with global summary of all issue types detected in your dataset and the overall prevalence of each type.\n",
160
+
"This is a Dataframe containing a comprehensive summary of all detected issue types within your dataset, along with their respective prevalence levels. Each row in this summary includes the following information:\n",
163
161
"\n",
164
-
"In each row:\\\n",
165
-
"`issue_type` - name of the issue\\\n",
166
-
"`num_images` - number of images of that issue type found in the dataset"
162
+
"`issue_type`: The name of the detected issue.\\\n",
163
+
"`num_images`: The number of images exhibiting the identified issue within the dataset."
167
164
]
168
165
},
169
166
{
@@ -301,7 +298,7 @@
301
298
"tags": []
302
299
},
303
300
"source": [
304
-
"You can see **entropy** values for each image in the datasetas shown below."
301
+
"You can see **size** statistics for the dataset below. Here we observe, both the 25th and 75th percentile are 256 for the dataset, hence images that are further away from this range are detected as oddly sized."
0 commit comments