bhimrazy commited on
Commit
52a7c21
1 Parent(s): 3683851

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +4 -4
README.md CHANGED
@@ -102,11 +102,11 @@ Finally, split the data into train and validation sets and save them to CSV file
102
  python scripts/split_dataset.py
103
  ```
104
 
105
- ### Training Model and Monitoring Progress with TensorBoard
106
 
107
  In the previous section, we covered how to set up your dataset and configure your training pipeline using a `Config` class. Now, let's dive into training your model and monitoring its progress using TensorBoard.
108
 
109
- #### Exploring Data Transformations and Augmentations
110
 
111
  If you're looking for examples of data transformations and augmentations, you can explore the provided `notebook.ipynb` file. This notebook contains various examples of data preprocessing techniques, such as resizing, cropping, rotation, and more.
112
 
@@ -115,7 +115,7 @@ To open and explore the notebook:
115
  3. Open the notebook and run the cells to see different transformation and augmentation examples.
116
 
117
 
118
- #### Training the Model
119
 
120
  To train your model, you can use the provided `train.py` script. Make sure you have set up your environment correctly and installed all dependencies as mentioned earlier. Here's how you can run the training pipeline:
121
 
@@ -129,7 +129,7 @@ python train.py
129
 
130
  This command will execute the training script and start training your model based on the parameters specified in your `Config` class.
131
 
132
- #### Monitoring Training Progress with TensorBoard
133
 
134
  TensorBoard is a powerful tool for visualizing and monitoring the training process. You can use it to track metrics such as loss, accuracy, and learning rate over time, as well as visualize model graphs and embeddings.
135
 
 
102
  python scripts/split_dataset.py
103
  ```
104
 
105
+ ## Training Model and Monitoring Progress with TensorBoard
106
 
107
  In the previous section, we covered how to set up your dataset and configure your training pipeline using a `Config` class. Now, let's dive into training your model and monitoring its progress using TensorBoard.
108
 
109
+ ### Exploring Data Transformations and Augmentations
110
 
111
  If you're looking for examples of data transformations and augmentations, you can explore the provided `notebook.ipynb` file. This notebook contains various examples of data preprocessing techniques, such as resizing, cropping, rotation, and more.
112
 
 
115
  3. Open the notebook and run the cells to see different transformation and augmentation examples.
116
 
117
 
118
+ ### Training the Model
119
 
120
  To train your model, you can use the provided `train.py` script. Make sure you have set up your environment correctly and installed all dependencies as mentioned earlier. Here's how you can run the training pipeline:
121
 
 
129
 
130
  This command will execute the training script and start training your model based on the parameters specified in your `Config` class.
131
 
132
+ ### Monitoring Training Progress with TensorBoard
133
 
134
  TensorBoard is a powerful tool for visualizing and monitoring the training process. You can use it to track metrics such as loss, accuracy, and learning rate over time, as well as visualize model graphs and embeddings.
135