Spaces:
Sleeping
Sleeping
Commit ·
217ba3b
1
Parent(s): 1fcc29a
Add application file
Browse files- imageBlurSmooth.ipynb +49 -0
imageBlurSmooth.ipynb
CHANGED
|
@@ -0,0 +1,49 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"cells": [
|
| 3 |
+
{
|
| 4 |
+
"cell_type": "code",
|
| 5 |
+
"execution_count": 1,
|
| 6 |
+
"id": "670f64c3",
|
| 7 |
+
"metadata": {},
|
| 8 |
+
"outputs": [
|
| 9 |
+
{
|
| 10 |
+
"ename": "ModuleNotFoundError",
|
| 11 |
+
"evalue": "No module named 'datasets'",
|
| 12 |
+
"output_type": "error",
|
| 13 |
+
"traceback": [
|
| 14 |
+
"\u001b[1;31m---------------------------------------------------------------------------\u001b[0m",
|
| 15 |
+
"\u001b[1;31mModuleNotFoundError\u001b[0m Traceback (most recent call last)",
|
| 16 |
+
"Cell \u001b[1;32mIn[1], line 1\u001b[0m\n\u001b[1;32m----> 1\u001b[0m \u001b[38;5;28;01mfrom\u001b[39;00m \u001b[38;5;21;01mdatasets\u001b[39;00m \u001b[38;5;28;01mimport\u001b[39;00m load_dataset\n\u001b[0;32m 3\u001b[0m ds \u001b[38;5;241m=\u001b[39m load_dataset(\u001b[38;5;124m\"\u001b[39m\u001b[38;5;124mtoghrultahirov/handwritten_text_ocr\u001b[39m\u001b[38;5;124m\"\u001b[39m)\n",
|
| 17 |
+
"\u001b[1;31mModuleNotFoundError\u001b[0m: No module named 'datasets'"
|
| 18 |
+
]
|
| 19 |
+
}
|
| 20 |
+
],
|
| 21 |
+
"source": [
|
| 22 |
+
"from datasets import load_dataset\n",
|
| 23 |
+
"\n",
|
| 24 |
+
"ds = load_dataset(\"toghrultahirov/handwritten_text_ocr\")"
|
| 25 |
+
]
|
| 26 |
+
}
|
| 27 |
+
],
|
| 28 |
+
"metadata": {
|
| 29 |
+
"kernelspec": {
|
| 30 |
+
"display_name": "Python 3",
|
| 31 |
+
"language": "python",
|
| 32 |
+
"name": "python3"
|
| 33 |
+
},
|
| 34 |
+
"language_info": {
|
| 35 |
+
"codemirror_mode": {
|
| 36 |
+
"name": "ipython",
|
| 37 |
+
"version": 3
|
| 38 |
+
},
|
| 39 |
+
"file_extension": ".py",
|
| 40 |
+
"mimetype": "text/x-python",
|
| 41 |
+
"name": "python",
|
| 42 |
+
"nbconvert_exporter": "python",
|
| 43 |
+
"pygments_lexer": "ipython3",
|
| 44 |
+
"version": "3.12.3"
|
| 45 |
+
}
|
| 46 |
+
},
|
| 47 |
+
"nbformat": 4,
|
| 48 |
+
"nbformat_minor": 5
|
| 49 |
+
}
|