2023-09-05 21:40:52 -04:00
|
|
|
# Lab Guide: Image Recognition with TensorFlow and Keras
|
|
|
|
|
|
|
|
## **Objective**
|
|
|
|
|
|
|
|
To provide students with hands-on experience in developing, training, and evaluating image recognition models using TensorFlow and Keras.
|
|
|
|
|
|
|
|
## **Prerequisites**
|
|
|
|
|
|
|
|
1. Basic understanding of Python programming.
|
|
|
|
2. Familiarity with machine learning concepts.
|
|
|
|
3. Python and necessary libraries installed: TensorFlow and Keras.
|
|
|
|
|
|
|
|
## **Lab Outline**
|
|
|
|
|
|
|
|
**Introduction to Image Recognition**:
|
|
|
|
- Discussing the basics of image recognition and convolutional neural networks (CNN).
|
|
|
|
|
|
|
|
**Setting Up the Environment**:
|
|
|
|
- Installing TensorFlow and Keras:
|
2023-09-05 21:42:32 -04:00
|
|
|
|
|
|
|
```bash
|
2023-09-05 21:40:52 -04:00
|
|
|
pip install tensorflow keras
|
2023-09-05 21:42:32 -04:00
|
|
|
```
|
2023-09-05 21:40:52 -04:00
|
|
|
|
|
|
|
**Image Data Preprocessing**:
|
|
|
|
|
2023-09-05 21:42:32 -04:00
|
|
|
- **Step 1**: Importing Necessary Libraries:
|
|
|
|
```python
|
2023-09-05 21:40:52 -04:00
|
|
|
import tensorflow as tf
|
|
|
|
from tensorflow.keras import datasets, layers, models
|
2023-09-05 21:42:32 -04:00
|
|
|
```
|
2023-09-05 21:40:52 -04:00
|
|
|
|
2023-09-05 21:42:32 -04:00
|
|
|
- **Step 2**: Loading and Preprocessing Image Data:
|
|
|
|
```python
|
2023-09-05 21:40:52 -04:00
|
|
|
(train_images, train_labels), (test_images, test_labels) = datasets.cifar10.load_data()
|
|
|
|
|
|
|
|
# Normalize pixel values to be between 0 and 1
|
|
|
|
train_images, test_images = train_images / 255.0, test_images / 255.0
|
2023-09-05 21:42:32 -04:00
|
|
|
```
|
2023-09-05 21:40:52 -04:00
|
|
|
|
|
|
|
**Building a Convolutional Neural Network (CNN)**:
|
|
|
|
|
2023-09-05 21:42:32 -04:00
|
|
|
- **Step 3**: Defining the CNN Architecture:
|
|
|
|
```python
|
2023-09-05 21:40:52 -04:00
|
|
|
model = models.Sequential([
|
|
|
|
layers.Conv2D(32, (3, 3), activation='relu', input_shape=(32, 32, 3)),
|
|
|
|
layers.MaxPooling2D((2, 2)),
|
|
|
|
layers.Conv2D(64, (3, 3), activation='relu'),
|
|
|
|
layers.MaxPooling2D((2, 2)),
|
|
|
|
layers.Conv2D(64, (3, 3), activation='relu')
|
|
|
|
])
|
2023-09-05 21:42:32 -04:00
|
|
|
```
|
2023-09-05 21:40:52 -04:00
|
|
|
|
2023-09-05 21:42:32 -04:00
|
|
|
- **Step 4**: Adding Dense Layers:
|
|
|
|
```python
|
2023-09-05 21:40:52 -04:00
|
|
|
model.add(layers.Flatten())
|
|
|
|
model.add(layers.Dense(64, activation='relu'))
|
|
|
|
model.add(layers.Dense(10))
|
2023-09-05 21:42:32 -04:00
|
|
|
```
|
2023-09-05 21:40:52 -04:00
|
|
|
|
|
|
|
**Compiling and Training the Model**:
|
|
|
|
|
2023-09-05 21:42:32 -04:00
|
|
|
- **Step 5**: Compiling the Model:
|
|
|
|
```python
|
2023-09-05 21:40:52 -04:00
|
|
|
model.compile(optimizer='adam',
|
|
|
|
loss=tf.keras.losses.SparseCategoricalCrossentropy(from_logits=True),
|
|
|
|
metrics=['accuracy'])
|
2023-09-05 21:42:32 -04:00
|
|
|
```
|
2023-09-05 21:40:52 -04:00
|
|
|
|
2023-09-05 21:42:32 -04:00
|
|
|
- **Step 6**: Training the Model:
|
|
|
|
```python
|
2023-09-05 21:40:52 -04:00
|
|
|
history = model.fit(train_images, train_labels, epochs=10,
|
|
|
|
validation_data=(test_images, test_labels))
|
2023-09-05 21:42:32 -04:00
|
|
|
```
|
2023-09-05 21:40:52 -04:00
|
|
|
|
|
|
|
**Evaluating the Model**:
|
|
|
|
|
2023-09-05 21:42:32 -04:00
|
|
|
- **Step 7**: Evaluating the Model and Visualizing Results:
|
|
|
|
```python
|
2023-09-05 21:40:52 -04:00
|
|
|
test_loss, test_acc = model.evaluate(test_images, test_labels, verbose=2)
|
|
|
|
|
|
|
|
import matplotlib.pyplot as plt
|
|
|
|
|
|
|
|
plt.plot(history.history['accuracy'], label='accuracy')
|
|
|
|
plt.plot(history.history['val_accuracy'], label = 'val_accuracy')
|
|
|
|
plt.xlabel('Epoch')
|
|
|
|
plt.ylabel('Accuracy')
|
|
|
|
plt.ylim([0.5, 1])
|
|
|
|
plt.legend(loc='lower right')
|
|
|
|
plt.show()
|
2023-09-05 21:42:32 -04:00
|
|
|
```
|
2023-09-05 21:40:52 -04:00
|
|
|
|
|
|
|
## **Resources**
|
|
|
|
|
|
|
|
1. [TensorFlow Documentation](https://www.tensorflow.org/api_docs)
|
|
|
|
2. [Keras Documentation](https://keras.io/api/)
|
|
|
|
|