|
5 | 5 | "id": "6a9fb5f2",
|
6 | 6 | "metadata": {},
|
7 | 7 | "source": [
|
8 |
| - "More At : https://github.com/iSiddharth20/DeepLearning-ImageClassification-Toolkit" |
| 8 | + "## Welcome to the AI-ML-Jupyter-Notebooks repository! \n", |
| 9 | + "### This guide will help you navigate and learn CNN Image Classification using TensorFlow and OpenCV.\n", |
| 10 | + "\n", |
| 11 | + "----\n", |
| 12 | + "\n", |
| 13 | + "#### Make sure to install necessary dependencies by running this command :\n", |
| 14 | + "pip install -r requirements.txt\n", |
| 15 | + "\n", |
| 16 | + "---\n", |
| 17 | + "\n", |
| 18 | + "#### TensorFlow is Required to run this codebase.\n", |
| 19 | + "Install using the Official Guige [HERE](https://www.tensorflow.org/install/pip).\n", |
| 20 | + "\n", |
| 21 | + "---" |
| 22 | + ] |
| 23 | + }, |
| 24 | + { |
| 25 | + "cell_type": "markdown", |
| 26 | + "id": "e9736387-67a9-454a-8a07-402e0f20b9ac", |
| 27 | + "metadata": {}, |
| 28 | + "source": [ |
| 29 | + "### Understanding PreProcessing\n", |
| 30 | + "- Load Dataset from 'DATA_DIR' Directory\n", |
| 31 | + "- Creates DataFrame containing Full Paths of Images and their Class Labels\n", |
| 32 | + "- (Change as per Requirement) Rescale Images to Computationally Efficient Resolution\n", |
| 33 | + "- (Optional but Recommended) Extracts Largest Object from Image using 'image_processing' Function\n", |
| 34 | + " - Leverages Parallel Processing for Faster Results\n", |
| 35 | + "- Compares Original and Rescaled+Processed Image SIde-By-Side to make necessary changes\n", |
| 36 | + "- Converts Processed Images to NumPy Array and Exports as Pickle File\n", |
| 37 | + " - Verifies If Exported Pickle File is Appropriate through 10 Random Samples\n", |
| 38 | + "- (Optional) Merge Certain Class Lables Together\n", |
| 39 | + "- Split Data for Training, Testing, Validation with Stratify to ensure data balancing\n", |
| 40 | + " - Verify if Split is Appropriate through 2 random samples\n", |
| 41 | + "- (Optional) Perform Random Oversampling on Data to reduce Biasness\n", |
| 42 | + " - Verify if Oversampling is Appropriate through 2 random samples\n", |
| 43 | + "- Perform One-Hot-Encoding of Class Labels\n", |
| 44 | + "- Training, Testing, Validation Data and One-Hot-Encoding is Exported as Pickle Files\n", |
| 45 | + "\n", |
| 46 | + "---" |
9 | 47 | ]
|
10 | 48 | },
|
11 | 49 | {
|
|
569 | 607 | " print('Export Unsuccessful for : OHE.pkl ') "
|
570 | 608 | ]
|
571 | 609 | },
|
| 610 | + { |
| 611 | + "cell_type": "markdown", |
| 612 | + "id": "3fab41a4-8ee1-4d28-aa5e-55d6596c0c4a", |
| 613 | + "metadata": {}, |
| 614 | + "source": [ |
| 615 | + "More At : https://github.com/iSiddharth20/DeepLearning-ImageClassification-Toolkit" |
| 616 | + ] |
| 617 | + }, |
572 | 618 | {
|
573 | 619 | "cell_type": "code",
|
574 | 620 | "execution_count": null,
|
575 |
| - "id": "0e1e3bfb-f1f8-4db6-8943-da8fce55b769", |
| 621 | + "id": "27bc0e74-0129-4052-b8c1-5649b0b500bd", |
576 | 622 | "metadata": {},
|
577 | 623 | "outputs": [],
|
578 | 624 | "source": []
|
|
0 commit comments